targetSdk 34로 변경
커스텀 액션에서 패키지를 명시
This commit is contained in:
@@ -14,7 +14,7 @@ plugins {
|
||||
|
||||
android {
|
||||
namespace 'kr.co.vividnext.sodalive'
|
||||
compileSdk 33
|
||||
compileSdk 34
|
||||
|
||||
viewBinding {
|
||||
enabled true
|
||||
@@ -24,11 +24,6 @@ android {
|
||||
dataBinding true
|
||||
}
|
||||
|
||||
lintOptions {
|
||||
checkDependencies true
|
||||
checkReleaseBuilds false
|
||||
}
|
||||
|
||||
dependenciesInfo {
|
||||
// Disables dependency metadata when building APKs.
|
||||
includeInApk = false
|
||||
@@ -39,9 +34,9 @@ android {
|
||||
defaultConfig {
|
||||
applicationId "kr.co.vividnext.sodalive"
|
||||
minSdk 23
|
||||
targetSdk 33
|
||||
versionCode 97
|
||||
versionName "1.15.2"
|
||||
targetSdk 34
|
||||
versionCode 98
|
||||
versionName "1.15.3"
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
@@ -57,7 +52,8 @@ android {
|
||||
}
|
||||
|
||||
debug {
|
||||
minifyEnabled false
|
||||
minifyEnabled true
|
||||
debuggable true
|
||||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||
applicationIdSuffix '.debug'
|
||||
|
||||
@@ -75,6 +71,10 @@ android {
|
||||
kotlinOptions {
|
||||
jvmTarget = JavaVersion.VERSION_17.toString()
|
||||
}
|
||||
lint {
|
||||
checkDependencies true
|
||||
checkReleaseBuilds false
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
||||
Reference in New Issue
Block a user