-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
implemented possibility to highlight filled items #37
base: master
Are you sure you want to change the base?
Conversation
@@ -38,11 +38,11 @@ android { | |||
} | |||
|
|||
dependencies { | |||
implementation 'androidx.appcompat:appcompat:1.0.0' | |||
|
|||
implementation "com.android.support:appcompat-v7:28.0.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please use androidx
.
implementation 'androidx.appcompat:appcompat:1.0.0' | ||
|
||
implementation "com.android.support:appcompat-v7:28.0.0" | ||
implementation 'com.android.support.constraint:constraint-layout:1.1.3' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
constraint-layout
is not needed in pinview module.
@@ -6,7 +6,7 @@ def issueUrl = 'https://github.com/ChaosLeong/PinView/issues' | |||
def gitUrl = '[email protected]:ChaosLeong/PinView.git' | |||
|
|||
group = "com.chaos.view" | |||
version = "1.4.2" | |||
version = "1.4.6" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You don't need to change the library version.
implementation 'androidx.appcompat:appcompat:1.0.0' | ||
implementation 'androidx.constraintlayout:constraintlayout:1.1.3' | ||
implementation "com.android.support:appcompat-v7:28.0.0" | ||
implementation 'com.android.support.constraint:constraint-layout:1.1.3' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unused library.
@@ -22,12 +22,10 @@ android { | |||
} | |||
|
|||
dependencies { | |||
implementation 'androidx.appcompat:appcompat:1.0.0' | |||
implementation 'androidx.constraintlayout:constraintlayout:1.1.3' | |||
implementation "com.android.support:appcompat-v7:28.0.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as mentioned above.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you combine one or more commits? I will merge as soon as the issues are fixed.
No description provided.