forked from MeloNX/MeloNX
105 lines
3.2 KiB
Groovy
105 lines
3.2 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'org.jetbrains.kotlin.android'
|
|
}
|
|
|
|
android {
|
|
namespace 'org.ryujinx.android'
|
|
compileSdk 33
|
|
|
|
defaultConfig {
|
|
applicationId "org.ryujinx.android"
|
|
minSdk 30
|
|
targetSdk 33
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
vectorDrawables {
|
|
useSupportLibrary true
|
|
}
|
|
|
|
ndk {
|
|
//noinspection ChromeOsAbiSupport
|
|
abiFilters 'arm64-v8a'
|
|
}
|
|
|
|
externalNativeBuild {
|
|
cmake {
|
|
cppFlags "-std=c++11"
|
|
arguments "-DANDROID_STL=c++_shared"
|
|
}
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '17'
|
|
}
|
|
buildFeatures {
|
|
compose true
|
|
prefab true
|
|
}
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion '1.3.2'
|
|
}
|
|
packagingOptions {
|
|
jniLibs {
|
|
keepDebugSymbols += '**/libryujinx.so'
|
|
useLegacyPackaging true
|
|
}
|
|
resources {
|
|
excludes += '/META-INF/{AL2.0,LGPL2.1}'
|
|
}
|
|
}
|
|
externalNativeBuild {
|
|
cmake {
|
|
path file('src/main/cpp/CMakeLists.txt')
|
|
version '3.22.1'
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.named("preBuild") {
|
|
dependsOn ':libryujinx:assemble'
|
|
}
|
|
|
|
dependencies {
|
|
runtimeOnly project(":libryujinx")
|
|
implementation 'androidx.core:core-ktx:1.10.1'
|
|
implementation platform('org.jetbrains.kotlin:kotlin-bom:1.8.0')
|
|
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.1'
|
|
implementation "androidx.navigation:navigation-compose:2.6.0"
|
|
implementation 'androidx.activity:activity-compose:1.7.2'
|
|
implementation platform('androidx.compose:compose-bom:2023.06.00')
|
|
implementation 'androidx.compose.ui:ui'
|
|
implementation 'androidx.compose.ui:ui-graphics'
|
|
implementation 'androidx.compose.ui:ui-tooling-preview'
|
|
implementation 'androidx.compose.material3:material3'
|
|
implementation 'com.github.swordfish90:radialgamepad:2.0.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
implementation 'com.google.oboe:oboe:1.7.0'
|
|
implementation "com.anggrayudi:storage:1.5.5"
|
|
implementation "androidx.preference:preference-ktx:1.2.0"
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.2'
|
|
implementation 'com.google.code.gson:gson:2.10.1'
|
|
implementation "io.coil-kt:coil-compose:2.4.0"
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
|
|
androidTestImplementation platform('androidx.compose:compose-bom:2023.06.00')
|
|
androidTestImplementation 'androidx.compose.ui:ui-test-junit4'
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.2'
|
|
debugImplementation 'androidx.compose.ui:ui-tooling'
|
|
debugImplementation 'androidx.compose.ui:ui-test-manifest'
|
|
}
|