Skip to content

Commit

Permalink
not using var
Browse files Browse the repository at this point in the history
  • Loading branch information
eebssk1 committed Nov 25, 2020
1 parent 8898e18 commit 5a09407
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions dexmaker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,11 @@ dependencies {
compileOnly project(':dalvikdx')
}

andfrapath = System.getenv('ANDROID_HOME') + '/platforms/android-28/android.jar'
task proguardFiles(type: ProGuardTask, dependsOn: jar) {
verbose
forceprocessing
configuration files('proguard-rules.pro')
libraryjars files(andfrapath,tasks.getByPath(':dalvikdx:jar').outputs)
libraryjars files(System.getenv('ANDROID_HOME') + '/platforms/android-28/android.jar',tasks.getByPath(':dalvikdx:jar').outputs)
injars jar.destinationDir.path + "/" + "${jar.archiveName}"
outjars jar.destinationDir.path + "/" + "pro_${jar.archiveName}"
}
Expand Down

0 comments on commit 5a09407

Please sign in to comment.