kaliber/build/android/app/build.gradle

50 lines
1.3 KiB
Groovy
Raw Permalink Normal View History

2020-04-13 11:24:53 +00:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
ndkVersion '21.3.6528147'
2020-04-13 11:24:53 +00:00
defaultConfig {
2021-08-31 21:21:29 +00:00
applicationId = 'com.woom.game'
minSdkVersion 21
targetSdkVersion 29
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.10.2'
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']
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.google.android.gms:play-services-ads:19.1.0'
2020-04-13 11:24:53 +00:00
}