Skip to content
This repository has been archived by the owner on May 24, 2022. It is now read-only.

change to android x instead of android.support #38

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion circularprogressindicator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ android {

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:support-annotations:27.1.1'
implementation "androidx.annotation:annotation:1.1.0"
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
import android.graphics.Shader;
import android.graphics.SweepGradient;
import android.os.Build;
import android.support.annotation.ColorInt;
import android.support.annotation.Dimension;
import android.support.annotation.IntDef;
import android.support.annotation.IntRange;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import androidx.annotation.ColorInt;
import androidx.annotation.Dimension;
import androidx.annotation.IntDef;
import androidx.annotation.IntRange;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import android.text.TextPaint;
import android.util.AttributeSet;
import android.util.DisplayMetrics;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package antonkozyriatskyi.circularprogressindicator;

import android.support.annotation.NonNull;
import androidx.annotation.NonNull;

/**
* Created by Anton on 06.06.2018.
Expand Down