summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2017-12-20 00:54:13 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2017-12-20 00:54:13 +0000
commite49703b70458a35f4c7c660b6b59a7c32dd8415e (patch)
treeadf54269a9175a5cda76ed515db415061c947a36
parentc96284d7b6de85967e31ad0497d891dbabdb7e00 (diff)
parentf2bfcde52be3543cfccd5666479253f1e4ae5a14 (diff)
downloadsetupwizard-e49703b70458a35f4c7c660b6b59a7c32dd8415e.tar.gz
Merge "Remove test APK rename"
-rw-r--r--library/self.gradle11
1 files changed, 0 insertions, 11 deletions
diff --git a/library/self.gradle b/library/self.gradle
index 6477171..f455952 100644
--- a/library/self.gradle
+++ b/library/self.gradle
@@ -67,14 +67,3 @@ android.lintOptions {
android.libraryVariants.all { variant ->
variant.assemble.dependsOn(tasks.findByName('lint'))
}
-
-// For compatibility with existing continuous test configurations, copy the file to
-// setup-wizard-libTest.apk
-// TODO: Remove this once continuous test configurations are updated to handle the new file name
-task createLegacyTestApk(type: Copy) {
- from "${project.ext.distDir}/setup-wizard-lib-gingerbreadCompat-debug-androidTest.apk"
- into "${project.ext.distDir}"
- rename ('setup-wizard-lib-gingerbreadCompat-debug-androidTest.apk', 'setup-wizard-libTest.apk')
-}
-
-tasks.dist.finalizedBy createLegacyTestApk