File tree Expand file tree Collapse file tree 5 files changed +8
-7
lines changed
src/main/java/com/turingtechnologies/materialscrollbar Expand file tree Collapse file tree 5 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ buildscript {
7
7
}
8
8
dependencies {
9
9
classpath ' com.github.ben-manes:gradle-versions-plugin:0.13.0'
10
- classpath ' com.android.tools.build:gradle:2.2.3 '
10
+ classpath ' com.android.tools.build:gradle:2.3.0 '
11
11
12
12
// NOTE: Do not place your application dependencies here; they belong
13
13
// in the individual module build.gradle files
@@ -20,5 +20,5 @@ allprojects {
20
20
maven { url ' https://jitpack.io' }
21
21
}
22
22
23
- project. ext. supportLibVersion = ' 25.1.1 '
23
+ project. ext. supportLibVersion = ' 25.2.0 '
24
24
}
Original file line number Diff line number Diff line change 1
- # Fri Sep 16 16:31:13 EDT 2016
1
+ # Fri Mar 03 12:00:14 EST 2017
2
2
distributionBase =GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-2.14.1 -all.zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-3.3 -all.zip
Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.library'
2
2
3
- def libVersion = ' 12.3.1 '
3
+ def libVersion = ' 12.3.2 '
4
4
5
5
android {
6
6
compileSdkVersion 25
Original file line number Diff line number Diff line change 19
19
import android .content .Context ;
20
20
import android .graphics .Typeface ;
21
21
import android .graphics .drawable .GradientDrawable ;
22
+ import android .support .annotation .ColorInt ;
22
23
import android .support .v4 .content .ContextCompat ;
23
24
import android .support .v4 .view .ViewCompat ;
24
25
import android .support .v7 .widget .RecyclerView ;
@@ -174,7 +175,7 @@ public U setTypeface(Typeface typeface){
174
175
* Used by the materialScrollBar to change the text colour for the indicator.
175
176
* @param colour The desired text colour.
176
177
*/
177
- void setTextColour (int colour ){
178
+ void setTextColour (@ ColorInt int colour ){
178
179
textView .setTextColor (colour );
179
180
}
180
181
Original file line number Diff line number Diff line change @@ -610,7 +610,7 @@ public void setRightToLeft(boolean rtl){
610
610
611
611
//CHAPTER IV - MISC METHODS
612
612
613
- //Fetch accent colour on devices running Lollipop or newer .
613
+ //Fetch accent colour.
614
614
static int fetchAccentColour (Context context ) {
615
615
TypedValue typedValue = new TypedValue ();
616
616
You can’t perform that action at this time.
0 commit comments