Skip to content

Commit 5e32455

Browse files
committed
see 10/28 log
1 parent 4dfacbc commit 5e32455

File tree

5 files changed

+1
-8
lines changed

5 files changed

+1
-8
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,11 @@ sudo: false
55
env:
66
global:
77
- COMPILE_SDK_VERSION = 26
8-
- BUILD_TOOLS_VERSION = 26.0.2
98

109
android:
1110
components:
1211
- platform-tools
1312
- tools
14-
- build-tools-$BUILD_TOOLS_VERSION
1513
- android-$COMPILE_SDK_VERSION
1614

1715
licenses:
@@ -28,4 +26,4 @@ before_install:
2826
- echo -e "\n84831b9409646a918e30573bab4c9c91346d8abd" > "$ANDROID_HOME/licenses/android-sdk-preview-license"
2927

3028
script:
31-
- ./gradlew build connectedCheck
29+
- ./gradlew build connectedCheck -- info

app/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ File signPropertiesFile = rootProject.file('sign/keystore.properties')
44

55
android {
66
compileSdkVersion rootProject.ext.compileSdkVersion
7-
buildToolsVersion rootProject.ext.buildToolsVersion
8-
97
defaultConfig {
108
applicationId "com.blankj.androidutilcode"
119
minSdkVersion rootProject.ext.minSdkVersion

build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ task clean(type: Delete) {
2727
ext {
2828
// Sdk and tools
2929
compileSdkVersion = 26
30-
buildToolsVersion = '26.0.2'
3130
minSdkVersion = 14
3231
targetSdkVersion = 22
3332

subutil/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ task jacocoTestReport(type: JacocoReport, dependsOn: ['testDebugUnitTest', 'crea
2222

2323
android {
2424
compileSdkVersion rootProject.ext.compileSdkVersion
25-
buildToolsVersion rootProject.ext.buildToolsVersion
2625

2726
defaultConfig {
2827
minSdkVersion rootProject.ext.minSdkVersion

utilcode/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ task jacocoTestReport(type: JacocoReport, dependsOn: ['testDebugUnitTest', 'crea
2222

2323
android {
2424
compileSdkVersion rootProject.ext.compileSdkVersion
25-
buildToolsVersion rootProject.ext.buildToolsVersion
2625

2726
defaultConfig {
2827
minSdkVersion rootProject.ext.minSdkVersion

0 commit comments

Comments
 (0)