libsuperderpy/android/app/build.gradle.in
Sebastian Krzyszkowiak f42fca2606
android: Target API 30
2021-07-19 01:57:31 +02:00

29 lines
647 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 30
defaultConfig {
applicationId "${LIBSUPERDERPY_APPID}"
minSdkVersion 15
targetSdkVersion ${ANDROID_TARGET_VERSION}
versionCode ${LIBSUPERDERPY_RELEASE}
versionName "${LIBSUPERDERPY_VERSION}"
}
sourceSets {
main {
jniLibs.srcDirs = ['libs']
}
}
buildTypes {
debug {
debuggable ${LIBSUPERDERPY_ANDROID_DEBUGGABLE}
}
}
aaptOptions {
noCompress "opus", "wbp"
}
}
dependencies {
implementation "org.liballeg.android:allegro:1.0@aar"
}