This repository was archived by the owner on Jan 31, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 31
31
}
32
32
33
33
apply from : " common.gradle"
34
+
35
+ android {
36
+ buildToolsVersion BUILD_TOOLS_VERSION
37
+ }
Original file line number Diff line number Diff line change @@ -27,14 +27,16 @@ ext {
27
27
PUBLISH_GROUP_ID = rootProject. properties[" PUBLISH_GROUP_ID" ] ?: " com.algolia"
28
28
// NOTE: This is the official version number used during publication.
29
29
PUBLISH_VERSION = ' 3.10.1'
30
+ APPCOMPAT_VERSION = ' 25.3.0'
31
+ BUILD_TOOLS_VERSION = ' 25.0.2'
30
32
}
31
33
32
34
android {
33
- compileSdkVersion 24
34
- buildToolsVersion " 24.0.3 "
35
+ compileSdkVersion 25
36
+ buildToolsVersion BUILD_TOOLS_VERSION
35
37
defaultConfig {
36
38
minSdkVersion 10
37
- targetSdkVersion 24
39
+ targetSdkVersion 25
38
40
versionCode 1
39
41
versionName PUBLISH_VERSION
40
42
}
@@ -73,8 +75,8 @@ repositories {
73
75
}
74
76
75
77
dependencies {
76
- compile ' com.android.support:appcompat-v7:24.2.1 '
77
- compile ' com.android.support:support-annotations:24.2.1 '
78
+ compile " com.android.support:appcompat-v7:$A PPCOMPAT_VERSION "
79
+ compile " com.android.support:support-annotations:$A PPCOMPAT_VERSION "
78
80
compile fileTree(include : [' *.jar' ], dir : ' libs' )
79
81
80
82
testCompile " junit:junit:4.12"
@@ -87,7 +89,7 @@ dependencies {
87
89
testCompile " org.powermock:powermock-classloading-xstream:1.6.1"
88
90
testCompile " org.powermock:powermock-api-mockito:1.6.1"
89
91
90
- javadoc ' com.android.support:support-annotations:24.2.1 '
92
+ javadoc " com.android.support:support-annotations:$A PPCOMPAT_VERSION "
91
93
}
92
94
93
95
// Javadoc
You can’t perform that action at this time.
0 commit comments