我有了多個模塊項目:如何建立一個模塊中的Android
MyProject
module1
module2
我想生成的APK模塊2.
模塊2在其下面的說明的build.gradle:
android.applicationVariants.all { variant ->
variant.outputs.each { output ->
def file = output.outputFile
output.outputFile = new File("../module1/src/main/assets", "module2.apk")
}
}
正如你可以看到,我想打造的APK到Module的資產目錄。
Android Studio中似乎並沒有對此有一個按鈕。如果有,請你指出我如何找到並使用它。另外一個好處是可以展示如何在終端上進行操作。我在Linux上(Kali Linux)
謝謝大家提前。
難道我在MyProject中的build.gradle添加此? –
見https://github.com/bmuschko/gradle-android-examples –