Created
January 10, 2015 12:12
-
-
Save xorrizon/e6b9ff6a50c4a00dca5c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Paintroid/adb_tasks.gradle b/Paintroid/adb_tasks.gradle | |
index 0937600..1f0a3f2 100644 | |
--- a/Paintroid/adb_tasks.gradle | |
+++ b/Paintroid/adb_tasks.gradle | |
@@ -44,7 +44,7 @@ def executeShellCommand(command) { | |
def createAdbInstallTask(variant) { | |
task ("commandlineAdbInstall${variant.name.capitalize()}") << { | |
- def command = [getAdb(), '-s', getAndroidDevice(), 'install', variant.packageApplication.outputFile.path] | |
+ def command = [getAdb(), '-s', getAndroidDevice(), 'install', variant.outputs[0].outputFile.path] | |
executeShellCommand(command) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment