@@ -5,7 +5,7 @@ plugins {
5
5
6
6
android {
7
7
compileSdk = ProjectSetting .PROJECT_COMPILE_SDK
8
- namespace = " com.frogobox.githubaction "
8
+ namespace = ProjectSetting . PROJECT_NAME_SPACE
9
9
10
10
defaultConfig {
11
11
@@ -25,51 +25,51 @@ 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
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
+ }
37
38
}
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
+ }
58
59
}
59
- }
60
60
61
61
buildFeatures {
62
62
viewBinding = true
63
63
}
64
64
65
65
compileOptions {
66
- sourceCompatibility = JavaVersion .VERSION_11
67
- targetCompatibility = JavaVersion .VERSION_11
66
+ sourceCompatibility = JavaVersion .VERSION_17
67
+ targetCompatibility = JavaVersion .VERSION_17
68
68
}
69
69
70
70
tasks.withType< org.jetbrains.kotlin.gradle.tasks.KotlinCompile > {
71
71
kotlinOptions {
72
- jvmTarget = " 11 "
72
+ jvmTarget = " 17 "
73
73
}
74
74
}
75
75
}
0 commit comments