mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-24 15:47:30 +00:00
Custom apk name for github flavor and git ignore android studio flavor release folders.
This commit is contained in:
parent
317bdc39de
commit
b71984d5d8
4
.gitignore
vendored
4
.gitignore
vendored
@ -17,4 +17,6 @@
|
|||||||
.externalNativeBuild
|
.externalNativeBuild
|
||||||
.cxx
|
.cxx
|
||||||
app/release
|
app/release
|
||||||
/sentry.properties
|
/sentry.properties
|
||||||
|
/app/fdroid/
|
||||||
|
/app/github/
|
||||||
|
@ -64,6 +64,18 @@ android {
|
|||||||
versionNameSuffix "-fdroid"
|
versionNameSuffix "-fdroid"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
android.applicationVariants.all { variant ->
|
||||||
|
if (variant.flavorName != "github") return
|
||||||
|
variant.outputs.all { output ->
|
||||||
|
def builtType = variant.buildType.name
|
||||||
|
def versionName = variant.versionName
|
||||||
|
// def versionCode = variant.versionCode
|
||||||
|
// def flavor = variant.flavorName
|
||||||
|
// flavor is already appended to versionName due to versionNameSuffix
|
||||||
|
outputFileName = "barinsta_${versionName}_${builtType}.apk"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
configurations.all {
|
configurations.all {
|
||||||
|
Loading…
Reference in New Issue
Block a user