1
0
Fork 0
mirror of https://github.com/gsantner/dandelion synced 2024-11-22 04:12:08 +01:00

gradle apk name

This commit is contained in:
Gregor Santner 2016-08-14 12:14:10 +02:00
parent 352d644bc3
commit 9bb6a383d5
2 changed files with 16 additions and 8 deletions

View file

@ -1,8 +1,9 @@
#aaaaaaa>> This file contains references to people who helped translating the app 00l>> This file contains references to people who helped translating the app
#aaaaaab>> Please send a message on crowdin, and you will get included in the next commit 01l>> Please send a message on crowdin, and you will get included in the next commit
#aaaaaac>> 02l>>
#aaaaaad>> Schemes: 03l>> Schemes:
#aaaaaae>> Firstname Lastname (Link) 04l>> Firstname Lastname (Link)
#aaaaaaf>> Firstname Lastname (E-Mail) 05l>> Firstname Lastname (E-Mail)
#aaaaaag>> Username (Link) 06l>> Username (Link)
#aaaaaah>> Username (E-Mail) 07l>> Username (E-Mail)
## 99l TRANSLATORS

View file

@ -23,6 +23,13 @@ android {
lintOptions { lintOptions {
disable 'MissingTranslation' disable 'MissingTranslation'
} }
applicationVariants.all { variant ->
variant.outputs.each { output ->
output.outputFile = new File(
output.outputFile.parent, "diasporaAndroid__${variant.versionName}__.apk")
}
}
} }
dependencies { dependencies {