kaliber/build/android/app/build.gradle

51 lines
1.3 KiB
Groovy
Raw Normal View History

2020-04-13 11:24:53 +00:00
apply plugin: 'com.android.application'
android {
compileSdk 33
ndkVersion '25.1.8937393'
2020-04-13 11:24:53 +00:00
defaultConfig {
2021-08-31 21:21:29 +00:00
applicationId = 'com.woom.game'
minSdk 24
targetSdk 33
2020-04-13 11:24:53 +00:00
externalNativeBuild {
cmake {
arguments '-DANDROID_STL=c++_static'
}
}
ndk {
abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86', 'x86_64'
}
2020-04-13 11:24:53 +00:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
ndk {
debugSymbolLevel 'FULL'
}
2020-04-13 11:24:53 +00:00
}
}
externalNativeBuild {
cmake {
version '3.22.1'
2020-04-13 11:24:53 +00:00
path 'CMakeLists.txt'
}
}
sourceSets {
main {
2021-10-29 11:42:49 +00:00
java.srcDirs += ['../../../src/engine/platform/java/com/kaliber/base']
2020-04-13 11:24:53 +00:00
assets.srcDirs = ['../../../assets']
}
}
namespace 'com.woom.game'
2020-04-13 11:24:53 +00:00
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'com.google.android.gms:play-services-ads:22.0.0'
2020-04-13 11:24:53 +00:00
}