mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
Support underscore (_) in versionCode
Example: https://github.com/ubergeek42/weechat-android/blob/v1.3.1/app/build.gradle.kts#L67
This commit is contained in:
parent
d44f35bd25
commit
2cb0ff4578
3 changed files with 24 additions and 1 deletions
|
|
@ -49,6 +49,16 @@ android {
|
|||
// Version code : 1
|
||||
// Version name : 1.0-free
|
||||
}
|
||||
underscore {
|
||||
applicationIdSuffix = ".underscore"
|
||||
versionCode 2018_04_30
|
||||
versionName "20180430-underscore"
|
||||
buildConfigField "boolean", "FULL_VERSION", "true"
|
||||
buildConfigField "boolean", "CLOSED_STORE", "true"
|
||||
// ApplicationId : com.kunzisoft.fdroidtest.applicationidsuffix.underscore
|
||||
// Version code : 2018_04_30
|
||||
// Version name : 20180430-underscore
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue