mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 14:32:28 +03:00
Don't allow '_' in first place of version code
Fixes a regression of2cb0ff45
. Example: versionCode project.versionCode_plus931b0a3087/app/build.gradle (L38)
This commit is contained in:
parent
a946ae2b44
commit
a9a336a12b
3 changed files with 23 additions and 1 deletions
|
@ -59,6 +59,15 @@ android {
|
|||
// Version code : 2018_04_30
|
||||
// Version name : 20180430-underscore
|
||||
}
|
||||
underscore_first {
|
||||
applicationIdSuffix = ".underscore_first"
|
||||
versionCode _04_30
|
||||
buildConfigField "boolean", "FULL_VERSION", "true"
|
||||
buildConfigField "boolean", "CLOSED_STORE", "true"
|
||||
// ApplicationId : com.kunzisoft.fdroidtest.applicationidsuffix.underscore_first
|
||||
// Version code : 1
|
||||
// Version name : 1.0
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue