@@ -25,38 +25,38 @@ android {
25
25
26
26
}
27
27
28
- signingConfigs {
29
- create(" release" ) {
30
- // You need to specify either an absolute path or include the
31
- // keystore file in the same directory as the build.gradle file.
32
- // [PROJECT FOLDER NAME/app/[COPY YOUT KEY STORE] .jks in here
33
- storeFile = file(ProjectSetting .KEY_PATH )
34
- storePassword = ProjectSetting .KEY_STORE_PASSWORD
35
- keyAlias = ProjectSetting .KEY_ALIAS
36
- keyPassword = ProjectSetting .KEY_ALIAS_PASSWORD
37
- }
28
+ signingConfigs {
29
+ create(" release" ) {
30
+ // You need to specify either an absolute path or include the
31
+ // keystore file in the same directory as the build.gradle file.
32
+ // [PROJECT FOLDER NAME/app/[COPY YOUT KEY STORE] .jks in here
33
+ storeFile = file(ProjectSetting .KEY_PATH )
34
+ storePassword = ProjectSetting .KEY_STORE_PASSWORD
35
+ keyAlias = ProjectSetting .KEY_ALIAS
36
+ keyPassword = ProjectSetting .KEY_ALIAS_PASSWORD
38
37
}
38
+ }
39
39
40
- buildTypes {
41
- getByName(" release" ) {
42
- isMinifyEnabled = false
40
+ buildTypes {
41
+ getByName(" release" ) {
42
+ isMinifyEnabled = false
43
43
44
- // Disable Debug Mode
45
- isDebuggable = false
46
- isJniDebuggable = false
47
- isRenderscriptDebuggable = false
48
- isPseudoLocalesEnabled = false
44
+ // Disable Debug Mode
45
+ isDebuggable = false
46
+ isJniDebuggable = false
47
+ isRenderscriptDebuggable = false
48
+ isPseudoLocalesEnabled = false
49
49
50
- proguardFiles(
51
- getDefaultProguardFile(" proguard-android-optimize.txt" ),
52
- " proguard-rules.pro"
53
- )
50
+ proguardFiles(
51
+ getDefaultProguardFile(" proguard-android-optimize.txt" ),
52
+ " proguard-rules.pro"
53
+ )
54
54
55
- // Generated Signed APK / AAB
56
- signingConfig = signingConfigs.getByName(" release" )
55
+ // Generated Signed APK / AAB
56
+ signingConfig = signingConfigs.getByName(" release" )
57
57
58
- }
59
58
}
59
+ }
60
60
61
61
buildFeatures {
62
62
viewBinding = true
@@ -69,17 +69,17 @@ android {
69
69
70
70
tasks.withType< org.jetbrains.kotlin.gradle.tasks.KotlinCompile > {
71
71
kotlinOptions {
72
- jvmTarget = JavaVersion . VERSION_11 .toString()
72
+ jvmTarget = " 11 "
73
73
}
74
74
}
75
75
}
76
76
77
77
dependencies {
78
78
79
- implementation(" androidx.core:core-ktx:1.9 .0" )
80
- implementation(" androidx.appcompat:appcompat:1.6.0 " )
79
+ implementation(" androidx.core:core-ktx:1.10 .0" )
80
+ implementation(" androidx.appcompat:appcompat:1.6.1 " )
81
81
implementation(" androidx.constraintlayout:constraintlayout:2.1.4" )
82
- implementation(" androidx.work:work-runtime-ktx:2.7 .1" )
82
+ implementation(" androidx.work:work-runtime-ktx:2.8 .1" )
83
83
implementation(" com.google.android.material:material:1.8.0" )
84
84
85
85
testImplementation(" junit:junit:4.13.2" )
0 commit comments