2019-06-29 02:35:14 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 29
|
|
|
|
buildToolsVersion "29.0.0"
|
|
|
|
defaultConfig {
|
2019-08-18 09:27:55 +02:00
|
|
|
applicationId "lightswitch.emu"
|
2019-08-29 14:40:39 +02:00
|
|
|
minSdkVersion 24
|
2019-06-29 02:35:14 +02:00
|
|
|
targetSdkVersion 29
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
ndk {
|
2019-07-02 23:32:20 +02:00
|
|
|
abiFilters "arm64-v8a"
|
2019-06-29 02:35:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
2019-07-24 22:19:43 +02:00
|
|
|
minifyEnabled true
|
|
|
|
useProguard false
|
|
|
|
}
|
|
|
|
debug {
|
2019-06-29 02:35:14 +02:00
|
|
|
minifyEnabled false
|
2019-07-24 22:19:43 +02:00
|
|
|
useProguard false
|
2019-06-29 02:35:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
externalNativeBuild {
|
|
|
|
cmake {
|
2019-07-24 22:19:43 +02:00
|
|
|
version "3.8.0+"
|
2019-06-29 02:35:14 +02:00
|
|
|
path "CMakeLists.txt"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
jni.srcDirs = ['src/main/cpp/unicorn/lib']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.0.2'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
2019-07-24 22:19:43 +02:00
|
|
|
implementation 'androidx.preference:preference:1.1.0-rc01'
|
2019-07-03 20:44:28 +02:00
|
|
|
implementation 'com.google.android.material:material:1.0.0'
|
2019-07-24 22:19:43 +02:00
|
|
|
implementation 'me.xdrop:fuzzywuzzy:1.2.0'
|
2019-06-29 02:35:14 +02:00
|
|
|
}
|