cosmic-station/app/build.gradle

77 lines
1.9 KiB
Groovy
Raw Normal View History

2023-07-09 22:09:23 +00:00
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
}
android {
namespace 'emu.zenith'
2023-07-09 22:09:23 +00:00
compileSdk 34
defaultConfig {
applicationId 'emu.zenith'
2023-07-09 22:09:23 +00:00
minSdk 30
targetSdk 34
versionCode 111
versionName '1.1.1'
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
ndk {
//noinspection ChromeOsAbiSupport
abiFilters 'arm64-v8a'
}
}
buildTypes {
release {
debuggable false
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
signingConfig = signingConfigs.debug
}
relwdbg {
debuggable true
minifyEnabled true
shrinkResources true
signingConfig = signingConfigs.debug
}
debug {
debuggable true
minifyEnabled false
shrinkResources false
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
externalNativeBuild {
cmake {
path file('src/main/CMakeLists.txt')
version '3.22.1'
}
}
buildFeatures {
viewBinding true
}
}
dependencies {
implementation 'androidx.core:core-ktx:1.10.1'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.9.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.test:monitor:1.6.1'
2023-07-09 22:09:23 +00:00
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
}