libsuperderpy/android/app/build.gradle.in

30 lines
647 B
Groovy
Raw Permalink Normal View History

2019-01-20 03:00:01 +01:00
apply plugin: 'com.android.application'
android {
2021-07-19 01:57:31 +02:00
compileSdkVersion 30
2019-01-20 03:00:01 +01:00
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"
}
2019-01-20 03:00:01 +01:00
}
dependencies {
implementation "org.liballeg.android:allegro:1.0@aar"
}