File tree Expand file tree Collapse file tree 5 files changed +16
-19
lines changed Expand file tree Collapse file tree 5 files changed +16
-19
lines changed Original file line number Diff line number Diff line change @@ -3,21 +3,18 @@ jdk: oraclejdk8
3
3
sudo : false
4
4
5
5
android :
6
- components :
6
+ components :
7
7
- tools
8
- - build-tools-26.0.2
9
- - android-26
8
+ - platform-tools
9
+ - build-tools-27.0.2
10
+ - android-27
10
11
- extra-android-m2repository
11
12
- extra-android-support
12
- licenses :
13
- - android-sdk-license-.+
14
- - ' .+'
15
-
16
13
before_install :
17
14
- chmod +x gradlew
18
15
- mkdir "$ANDROID_HOME/licenses" || true
19
- - echo -e "\n8933bad161af4178b1185d1a37fbf41ea5269c55" > "$ANDROID_HOME/ licenses/android-sdk-license"
20
- - echo -e "\n84831b9409646a918e30573bab4c9c91346d8abd" > "$ANDROID_HOME/licenses/ android-sdk-preview-license "
16
+ # Hack to accept Android licenses
17
+ - yes | sdkmanager "platforms; android-27 "
21
18
22
19
script :
23
20
- ./gradlew assembleRelease
Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.application'
2
2
3
3
android {
4
- compileSdkVersion 26
4
+ compileSdkVersion 27
5
5
6
6
defaultConfig {
7
7
applicationId " com.chad.baserecyclerviewadapterhelper"
8
8
minSdkVersion 14
9
- targetSdkVersion 26
9
+ targetSdkVersion 27
10
10
versionCode 5
11
11
versionName " 2.1"
12
12
}
@@ -28,9 +28,9 @@ dependencies {
28
28
implementation project(path : ' :library' )
29
29
implementation project(' :material-spinner-1.0.5' )
30
30
implementation ' com.github.bumptech.glide:glide:3.7.0'
31
- implementation ' com.android.support:design:26 .1.0 '
32
- implementation ' com.android.support:cardview-v7:26 .1.0 '
33
- implementation ' com.android.support:appcompat-v7:26 .1.0 '
31
+ implementation ' com.android.support:design:27 .1.1 '
32
+ implementation ' com.android.support:cardview-v7:27 .1.1 '
33
+ implementation ' com.android.support:appcompat-v7:27 .1.1 '
34
34
implementation ' com.kyleduo.switchbutton:library:2.0.0'
35
35
implementation ' com.orhanobut:logger:2.1.1'
36
36
}
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ buildscript {
7
7
8
8
}
9
9
dependencies {
10
- classpath ' com.android.tools.build:gradle:3.1.0 '
10
+ classpath ' com.android.tools.build:gradle:3.1.2 '
11
11
}
12
12
}
13
13
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ 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-4.4 -all.zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-4.6 -all.zip
Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.library'
2
2
android {
3
- compileSdkVersion 26
3
+ compileSdkVersion 27
4
4
5
5
defaultConfig {
6
6
minSdkVersion 11
7
- targetSdkVersion 26
7
+ targetSdkVersion 27
8
8
versionCode 1
9
9
versionName " 1.0"
10
10
}
@@ -48,5 +48,5 @@ artifacts {
48
48
dependencies {
49
49
50
50
implementation fileTree(include : [' *.jar' ], dir : ' libs' )
51
- compileOnly ' com.android.support:recyclerview-v7:26 .1.0 '
51
+ compileOnly ' com.android.support:recyclerview-v7:27 .1.1 '
52
52
}
You can’t perform that action at this time.
0 commit comments