Created
October 27, 2014 19:39
-
-
Save pdegand/0f8d07b574df84e764ec to your computer and use it in GitHub Desktop.
This file contains 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
android.applicationVariants.all { variant -> | |
if (variant.buildType.name == 'release') { | |
variant.outputs.each { output -> | |
output.assemble << { | |
println "Copying Wear APK inside mobile" | |
copy { | |
from output.outputFile.path | |
into "../mobile/src/main/assets" | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment