mirror of
https://github.com/skyline-emu/skyline.git
synced 2025-01-23 23:57:56 +03:00
7ad2e11705
This commit adds the Services API and implements some services. It also changes the name of the application to Skyline and replaces the icon.
49 lines
1.1 KiB
Groovy
49 lines
1.1 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
buildToolsVersion '29.0.2'
|
|
defaultConfig {
|
|
applicationId "skyline.emu"
|
|
minSdkVersion 26
|
|
targetSdkVersion 29
|
|
versionCode 1
|
|
versionName "1.0"
|
|
ndk {
|
|
abiFilters "arm64-v8a"
|
|
}
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
}
|
|
debug {
|
|
minifyEnabled false
|
|
}
|
|
}
|
|
externalNativeBuild {
|
|
cmake {
|
|
version "3.8.0+"
|
|
path "CMakeLists.txt"
|
|
}
|
|
}
|
|
sourceSets {
|
|
main {
|
|
jni.srcDirs = ['src/main/cpp/unicorn/lib']
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
implementation 'androidx.preference:preference:1.1.0'
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
implementation 'me.xdrop:fuzzywuzzy:1.2.0'
|
|
}
|