98 lines
2.6 KiB
Plaintext
98 lines
2.6 KiB
Plaintext
plugins {
|
|
alias(libs.plugins.android.application)
|
|
alias(libs.plugins.kotlin.android)
|
|
}
|
|
|
|
android {
|
|
namespace = "com.coldmint.gaodemap"
|
|
compileSdk = 34
|
|
signingConfigs {
|
|
create("debug-keystore") {
|
|
keyAlias = "debug"
|
|
keyPassword = "15f57b8b"
|
|
storeFile = file("../keystore/debug.jks")
|
|
storePassword = "15f57b8b"
|
|
}
|
|
create("release-keystore") {
|
|
keyAlias = "release"
|
|
keyPassword = "d1bf4d4c"
|
|
storeFile = file("../keystore/release.jks")
|
|
storePassword = "d1bf4d4c"
|
|
}
|
|
}
|
|
|
|
defaultConfig {
|
|
|
|
|
|
applicationId = "com.coldmint.gaodemap"
|
|
minSdk = 24
|
|
targetSdk = 34
|
|
versionCode = 1
|
|
versionName = "1.0"
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
externalNativeBuild {
|
|
cmake {
|
|
cppFlags += ""
|
|
}
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
getByName("release") {
|
|
isMinifyEnabled = false
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
signingConfig = signingConfigs.getByName("release-keystore")
|
|
}
|
|
getByName("debug") {
|
|
isMinifyEnabled = false
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
signingConfig = signingConfigs.getByName("debug-keystore")
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
buildFeatures {
|
|
viewBinding = true
|
|
}
|
|
externalNativeBuild {
|
|
cmake {
|
|
path = file("src/main/cpp/CMakeLists.txt")
|
|
version = "3.22.1"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation (libs.permissionx)
|
|
implementation(libs.godot)
|
|
implementation(libs.androidx.core.ktx)
|
|
implementation(libs.androidx.appcompat)
|
|
implementation(libs.material)
|
|
implementation(libs.androidx.constraintlayout)
|
|
implementation(libs.androidx.navigation.fragment.ktx)
|
|
implementation(libs.androidx.navigation.ui.ktx)
|
|
implementation(
|
|
fileTree(
|
|
mapOf(
|
|
"dir" to "libs",
|
|
"include" to listOf("*.aar", "*.jar"),
|
|
)
|
|
)
|
|
)
|
|
testImplementation(libs.junit)
|
|
androidTestImplementation(libs.androidx.junit)
|
|
androidTestImplementation(libs.androidx.espresso.core)
|
|
} |