mirror of https://github.com/auygun/kaliber.git
51 lines
1.3 KiB
Groovy
51 lines
1.3 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdk 33
|
|
ndkVersion '25.2.9519653'
|
|
|
|
defaultConfig {
|
|
applicationId = 'com.woom.game'
|
|
minSdk 24
|
|
targetSdk 33
|
|
externalNativeBuild {
|
|
cmake {
|
|
arguments '-DANDROID_STL=c++_static'
|
|
}
|
|
}
|
|
ndk {
|
|
abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86', 'x86_64'
|
|
}
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'),
|
|
'proguard-rules.pro'
|
|
ndk {
|
|
debugSymbolLevel 'FULL'
|
|
}
|
|
}
|
|
}
|
|
externalNativeBuild {
|
|
cmake {
|
|
version '3.22.1'
|
|
path 'CMakeLists.txt'
|
|
}
|
|
}
|
|
sourceSets {
|
|
main {
|
|
java.srcDirs += ['../../../src/engine/platform/java/com/kaliber/base']
|
|
assets.srcDirs = ['../../../assets']
|
|
}
|
|
}
|
|
namespace 'com.woom.game'
|
|
}
|
|
|
|
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'
|
|
}
|