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}"
|
|
|
|
}
|
2019-01-21 04:52:15 +01:00
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
jniLibs.srcDirs = ['libs']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
debug {
|
|
|
|
debuggable ${LIBSUPERDERPY_ANDROID_DEBUGGABLE}
|
|
|
|
}
|
|
|
|
}
|
2019-01-21 21:41:41 +01:00
|
|
|
aaptOptions {
|
|
|
|
noCompress "opus", "wbp"
|
|
|
|
}
|
2019-01-20 03:00:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation "org.liballeg.android:allegro:1.0@aar"
|
|
|
|
}
|