Merge pull request #6 from lacerta-doc/develop

最新Developに追従
This commit is contained in:
ろむねこ 2023-12-20 10:18:04 +09:00 committed by GitHub
commit d30eded211
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,8 +11,12 @@ android {
applicationId "one.nem.lacerta" applicationId "one.nem.lacerta"
minSdk 26 minSdk 26
targetSdk 33 targetSdk 33
versionCode 1
versionName "1.0" // Develop上では次回のリリースバージョンを指定
// , Internal, Release問わず毎回インクリメントする
// https://developer.android.com/studio/publish/versioning#versioningsettings
versionCode 2
versionName "0.1 Internal release 2"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
} }
@ -26,6 +30,13 @@ android {
applicationIdSuffix ".debug" applicationIdSuffix ".debug"
matchingFallbacks = ['release'] matchingFallbacks = ['release']
} }
internal_release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
applicationIdSuffix ".internal"
matchingFallbacks = ['release']
}
beta_release { beta_release {
minifyEnabled false minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'