2021-01-31 22:11:26 +01:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
|
|
|
id 'kotlin-android'
|
|
|
|
id 'kotlin-kapt'
|
|
|
|
id 'dagger.hilt.android.plugin'
|
|
|
|
}
|
2019-06-29 02:35:14 +02:00
|
|
|
|
|
|
|
android {
|
2022-03-06 17:02:52 +01:00
|
|
|
namespace 'emu.skyline'
|
|
|
|
|
2021-10-26 07:15:49 +02:00
|
|
|
compileSdkVersion 31
|
2022-03-29 10:26:36 +02:00
|
|
|
buildToolsVersion '33.0.0-rc2'
|
2019-06-29 02:35:14 +02:00
|
|
|
defaultConfig {
|
2019-09-24 22:54:27 +02:00
|
|
|
applicationId "skyline.emu"
|
2021-01-22 04:02:01 +01:00
|
|
|
|
2021-07-10 15:38:18 +02:00
|
|
|
minSdkVersion 29
|
2021-10-26 07:15:49 +02:00
|
|
|
targetSdkVersion 31
|
2021-01-22 04:02:01 +01:00
|
|
|
|
2019-10-18 12:52:38 +02:00
|
|
|
versionCode 3
|
2021-03-28 16:35:13 +02:00
|
|
|
versionName "0.0.3"
|
2021-01-22 04:02:01 +01:00
|
|
|
|
2019-06-29 02:35:14 +02:00
|
|
|
ndk {
|
2019-07-02 23:32:20 +02:00
|
|
|
abiFilters "arm64-v8a"
|
2019-06-29 02:35:14 +02:00
|
|
|
}
|
|
|
|
}
|
2021-01-22 04:02:01 +01:00
|
|
|
|
|
|
|
/* JVM Bytecode Options */
|
2021-02-08 05:17:17 +01:00
|
|
|
def javaVersion = JavaVersion.VERSION_1_8
|
2021-01-22 04:02:01 +01:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility = javaVersion
|
|
|
|
targetCompatibility = javaVersion
|
2020-05-28 07:39:36 +02:00
|
|
|
}
|
2021-03-29 20:40:48 +02:00
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = javaVersion.toString()
|
|
|
|
}
|
|
|
|
|
2019-06-29 02:35:14 +02:00
|
|
|
buildTypes {
|
|
|
|
release {
|
2019-10-18 12:52:38 +02:00
|
|
|
debuggable true
|
Framebuffer and NativeActivity
What was added:
* Framebuffer
* NativeActivity
* NV Services
* IOCTL Handler
* NV Devices:
* * /dev/nvmap - 0xC0080101, 0xC0080103, 0xC0200104, 0xC0180105, 0xC00C0109, 0xC008010E
* * /dev/nvhost-as-gpu
* * /dev/nvhost-channel - 0x40044801, 0xC0104809, 0xC010480B, 0xC018480C, 0x4004480D, 0xC020481A, 0x40084714
* * /dev/nvhost-ctrl
* * /dev/nvhost-ctrl-gpu - 0x80044701, 0x80284702, 0xC0184706, 0xC0B04705, 0x80084714
* SVCs:
* * SetMemoryAttribute
* * CreateTransferMemory
* * ResetSignal
* * GetSystemTick
* Addition of Compact Logger
What was fixed:
* SVCs:
* * SetHeapSize
* * SetMemoryAttribute
* * QueryMemory
* A release build would not set CMAKE_BUILD_TYPE to "RELEASE"
* The logger code was simplified
2019-11-13 21:09:31 +01:00
|
|
|
externalNativeBuild {
|
|
|
|
cmake {
|
|
|
|
arguments "-DCMAKE_BUILD_TYPE=RELEASE"
|
|
|
|
}
|
|
|
|
}
|
2019-07-24 22:19:43 +02:00
|
|
|
minifyEnabled true
|
2019-10-18 12:52:38 +02:00
|
|
|
shrinkResources true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
signingConfig signingConfigs.debug
|
2019-07-24 22:19:43 +02:00
|
|
|
}
|
2021-01-22 04:02:01 +01:00
|
|
|
|
2019-07-24 22:19:43 +02:00
|
|
|
debug {
|
2019-10-18 12:52:38 +02:00
|
|
|
debuggable true
|
2019-06-29 02:35:14 +02:00
|
|
|
minifyEnabled false
|
2019-10-18 12:52:38 +02:00
|
|
|
shrinkResources false
|
2019-06-29 02:35:14 +02:00
|
|
|
}
|
|
|
|
}
|
2021-10-26 07:15:49 +02:00
|
|
|
|
2021-03-29 20:40:48 +02:00
|
|
|
buildFeatures {
|
|
|
|
viewBinding true
|
|
|
|
}
|
2021-01-22 04:02:01 +01:00
|
|
|
|
|
|
|
/* Linting */
|
2022-03-06 17:02:52 +01:00
|
|
|
lint {
|
2021-01-22 04:02:01 +01:00
|
|
|
disable 'IconLocation'
|
|
|
|
}
|
|
|
|
|
|
|
|
/* NDK */
|
2022-03-29 10:26:36 +02:00
|
|
|
ndkVersion '25.0.8221429'
|
2019-06-29 02:35:14 +02:00
|
|
|
externalNativeBuild {
|
|
|
|
cmake {
|
2021-01-22 04:02:01 +01:00
|
|
|
version '3.18.1+'
|
2019-06-29 02:35:14 +02:00
|
|
|
path "CMakeLists.txt"
|
|
|
|
}
|
|
|
|
}
|
2021-03-03 21:40:16 +01:00
|
|
|
|
2021-03-27 22:17:35 +01:00
|
|
|
/* Android Assets */
|
2022-03-06 17:02:52 +01:00
|
|
|
androidResources {
|
|
|
|
ignoreAssetsPattern '*.md'
|
2021-03-03 21:40:16 +01:00
|
|
|
}
|
2019-06-29 02:35:14 +02:00
|
|
|
|
2021-10-26 07:15:49 +02:00
|
|
|
/* Vulkan Validation Layers */
|
|
|
|
sourceSets {
|
|
|
|
debug {
|
|
|
|
jniLibs {
|
|
|
|
srcDir "libraries/vklayers"
|
|
|
|
}
|
2021-03-27 22:17:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-29 02:35:14 +02:00
|
|
|
dependencies {
|
2021-01-22 04:02:01 +01:00
|
|
|
/* Google */
|
2022-01-10 16:08:37 +01:00
|
|
|
implementation "androidx.core:core-ktx:1.7.0"
|
2022-03-06 17:02:52 +01:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.4.1'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
|
|
|
|
implementation 'androidx.preference:preference-ktx:1.2.0'
|
|
|
|
implementation 'com.google.android.material:material:1.5.0'
|
2019-12-10 21:51:02 +01:00
|
|
|
implementation 'androidx.documentfile:documentfile:1.0.1'
|
2021-01-30 14:59:11 +01:00
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
|
|
|
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
|
|
|
|
implementation "androidx.lifecycle:lifecycle-livedata-ktx:$lifecycle_version"
|
2022-03-06 17:02:52 +01:00
|
|
|
implementation 'androidx.fragment:fragment-ktx:1.4.1'
|
2021-01-31 22:11:26 +01:00
|
|
|
implementation "com.google.dagger:hilt-android:$hilt_version"
|
|
|
|
kapt "com.google.dagger:hilt-android-compiler:$hilt_version"
|
2021-10-14 16:18:24 +02:00
|
|
|
implementation 'com.google.android.flexbox:flexbox:3.0.0'
|
2021-01-22 04:02:01 +01:00
|
|
|
|
2021-10-16 13:27:29 +02:00
|
|
|
/* JetBrains */
|
2021-01-30 14:59:11 +01:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
2021-01-22 04:02:01 +01:00
|
|
|
|
|
|
|
/* Other Java */
|
|
|
|
implementation 'info.debatty:java-string-similarity:2.0.0'
|
2019-06-29 02:35:14 +02:00
|
|
|
}
|
2021-10-26 07:15:49 +02:00
|
|
|
|
|
|
|
kapt {
|
|
|
|
correctErrorTypes true
|
|
|
|
}
|