mirror of
https://gitlab.com/dosowisko.net/libsuperderpy.git
synced 2024-12-12 20:18:00 +01:00
29 lines
647 B
Groovy
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"
|
|
}
|