mirror of
https://gitlab.com/dosowisko.net/libsuperderpy.git
synced 2024-12-12 20:18:00 +01:00
19 lines
517 B
Groovy
19 lines
517 B
Groovy
|
apply plugin: 'com.android.application'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 26
|
||
|
defaultConfig {
|
||
|
applicationId "${LIBSUPERDERPY_APPID}"
|
||
|
minSdkVersion 15
|
||
|
targetSdkVersion ${ANDROID_TARGET_VERSION}
|
||
|
versionCode ${LIBSUPERDERPY_RELEASE}
|
||
|
versionName "${LIBSUPERDERPY_VERSION}"
|
||
|
}
|
||
|
sourceSets { main { jniLibs.srcDirs = ['libs'] } }
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
//implementation fileTree(dir: 'libs', include: ['*.jar', '*.so'])
|
||
|
implementation "org.liballeg.android:allegro:1.0@aar"
|
||
|
}
|