@@ -5,7 +5,7 @@ plugins {
55
66android {
77 compileSdk = ProjectSetting .PROJECT_COMPILE_SDK
8- namespace = " com.frogobox.githubaction "
8+ namespace = ProjectSetting . PROJECT_NAME_SPACE
99
1010 defaultConfig {
1111
@@ -25,51 +25,51 @@ android {
2525
2626 }
2727
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
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+ }
3738 }
38- }
3939
40- buildTypes {
41- getByName(" release" ) {
42- isMinifyEnabled = false
40+ buildTypes {
41+ getByName(" release" ) {
42+ isMinifyEnabled = false
4343
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
4949
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+ )
5454
55- // Generated Signed APK / AAB
56- signingConfig = signingConfigs.getByName(" release" )
55+ // Generated Signed APK / AAB
56+ signingConfig = signingConfigs.getByName(" release" )
5757
58+ }
5859 }
59- }
6060
6161 buildFeatures {
6262 viewBinding = true
6363 }
6464
6565 compileOptions {
66- sourceCompatibility = JavaVersion .VERSION_11
67- targetCompatibility = JavaVersion .VERSION_11
66+ sourceCompatibility = JavaVersion .VERSION_17
67+ targetCompatibility = JavaVersion .VERSION_17
6868 }
6969
7070 tasks.withType< org.jetbrains.kotlin.gradle.tasks.KotlinCompile > {
7171 kotlinOptions {
72- jvmTarget = " 11 "
72+ jvmTarget = " 17 "
7373 }
7474 }
7575}
0 commit comments