Skip to content

Commit

Permalink
Remove Travis CI setup
Browse files Browse the repository at this point in the history
  • Loading branch information
kirich1409 committed Mar 2, 2021
1 parent 4b4282f commit 4a8d50a
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,5 @@ ext {
dependencies.lifecycleCommonJava8 = 'androidx.lifecycle:lifecycle-common-java8:2.3.0'
dependencies.recyclerview = 'androidx.recyclerview:recyclerview:1.1.0'

travisBuild = System.getenv("TRAVIS") == "true"
preDexEnabled = "true" != System.getenv("PRE_DEX_DISABLED")
}
2 changes: 1 addition & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ android {
}

dexOptions {
preDexLibraries = preDexEnabled && !travisBuild
preDexLibraries = preDexEnabled
}
}

Expand Down
2 changes: 1 addition & 1 deletion vbpd/vbpd-full/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ android {
}

dexOptions {
preDexLibraries = preDexEnabled && !travisBuild
preDexLibraries = preDexEnabled
}
}

Expand Down
2 changes: 1 addition & 1 deletion vbpd/vbpd-noreflection/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ android {
}

dexOptions {
preDexLibraries = preDexEnabled && !travisBuild
preDexLibraries = preDexEnabled
}
}

Expand Down

0 comments on commit 4a8d50a

Please sign in to comment.