geo-therminator-android/app/build.gradle

78 lines
2 KiB
Groovy
Raw Normal View History

2021-08-19 15:48:06 +00:00
plugins {
id 'com.android.application'
id 'kotlin-android'
}
android {
compileSdkVersion 30
buildToolsVersion "30.0.3"
task buildNum(type: Exec, description: 'Update Elixir App') {
2022-08-23 13:11:32 +00:00
commandLine './run_mix', 'package.mobile'
2021-08-19 15:48:06 +00:00
}
tasks.withType(JavaCompile) {
compileTask -> compileTask.dependsOn buildNum
}
defaultConfig {
2022-08-31 19:02:30 +00:00
applicationId 'net.nytsoi.geotherminator'
2021-08-19 15:48:06 +00:00
minSdkVersion 23
targetSdkVersion 30
versionCode 1
versionName "1.0"
ndk {
2021-09-15 16:20:53 +00:00
abiFilters "armeabi-v7a", "arm64-v8a" , "x86_64"
2021-08-19 15:48:06 +00:00
}
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {
cppFlags ''
}
}
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
2021-08-19 15:48:06 +00:00
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
externalNativeBuild {
cmake {
path file('src/main/cpp/CMakeLists.txt')
version '3.10.2'
}
}
buildFeatures {
viewBinding true
}
2021-09-17 10:05:13 +00:00
packagingOptions {
jniLibs {
useLegacyPackaging = true
}
}
2021-08-19 15:48:06 +00:00
}
dependencies {
2021-09-15 16:20:53 +00:00
implementation fileTree(dir: "libs", include: '*.jar')
2021-08-19 15:48:06 +00:00
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.5.0'
implementation 'com.google.android.material:material:1.3.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
2021-09-15 16:20:53 +00:00
}