File tree 1 file changed +6
-8
lines changed
1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ android {
13
13
applicationId = " com.dessalines.thumbkey"
14
14
minSdk = 21
15
15
targetSdk = 34
16
- versionCode = 117
17
- versionName = " 3.4.16 "
16
+ versionCode = 118
17
+ versionName = " 4.0.0 "
18
18
19
19
testInstrumentationRunner = " androidx.test.runner.AndroidJUnitRunner"
20
20
vectorDrawables {
@@ -33,7 +33,7 @@ android {
33
33
34
34
if (project.hasProperty(" RELEASE_STORE_FILE" )) {
35
35
signingConfigs {
36
- register (" release" ) {
36
+ create (" release" ) {
37
37
storeFile = file(project.property(" RELEASE_STORE_FILE" )!! )
38
38
storePassword = project.property(" RELEASE_STORE_PASSWORD" ) as String?
39
39
keyAlias = project.property(" RELEASE_KEY_ALIAS" ) as String?
@@ -47,10 +47,8 @@ android {
47
47
}
48
48
buildTypes {
49
49
release {
50
- signingConfig = if (project.hasProperty(" RELEASE_STORE_FILE" )) {
51
- signingConfigs.getByName(" release" )
52
- } else {
53
- signingConfigs.getByName(" debug" )
50
+ if (project.hasProperty(" RELEASE_STORE_FILE" )) {
51
+ signingConfig = signingConfigs.getByName(" release" )
54
52
}
55
53
56
54
isMinifyEnabled = true
@@ -132,4 +130,4 @@ dependencies {
132
130
133
131
// App compat
134
132
implementation(" androidx.appcompat:appcompat:1.7.0" )
135
- }
133
+ }
You can’t perform that action at this time.
0 commit comments