|
|
@ -1,9 +1,9 @@ |
|
|
// SPDX-FileCopyrightText: Copyright yuzu/Citra Emulator Project |
|
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later |
|
|
|
|
|
|
|
|
|
|
|
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project |
|
|
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project |
|
|
// SPDX-License-Identifier: GPL-3.0-or-later |
|
|
// SPDX-License-Identifier: GPL-3.0-or-later |
|
|
|
|
|
|
|
|
|
|
|
// SPDX-FileCopyrightText: Copyright yuzu/Citra Emulator Project |
|
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later |
|
|
|
|
|
|
|
|
import android.annotation.SuppressLint |
|
|
import android.annotation.SuppressLint |
|
|
import kotlin.collections.setOf |
|
|
import kotlin.collections.setOf |
|
|
import org.jlleitschuh.gradle.ktlint.reporter.ReporterType |
|
|
import org.jlleitschuh.gradle.ktlint.reporter.ReporterType |
|
|
@ -35,6 +35,7 @@ android { |
|
|
|
|
|
|
|
|
buildFeatures { |
|
|
buildFeatures { |
|
|
viewBinding = true |
|
|
viewBinding = true |
|
|
|
|
|
buildConfig = true |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
compileOptions { |
|
|
compileOptions { |
|
|
@ -62,11 +63,7 @@ android { |
|
|
targetSdk = 35 |
|
|
targetSdk = 35 |
|
|
versionName = getGitVersion() |
|
|
versionName = getGitVersion() |
|
|
|
|
|
|
|
|
versionCode = if (System.getenv("AUTO_VERSIONED") == "true") { |
|
|
|
|
|
autoVersion |
|
|
|
|
|
} else { |
|
|
|
|
|
1 |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
versionCode = autoVersion |
|
|
|
|
|
|
|
|
ndk { |
|
|
ndk { |
|
|
@SuppressLint("ChromeOsAbiSupport") |
|
|
@SuppressLint("ChromeOsAbiSupport") |
|
|
@ -121,7 +118,6 @@ android { |
|
|
isDefault = true |
|
|
isDefault = true |
|
|
resValue("string", "app_name_suffixed", "eden Debug Release") |
|
|
resValue("string", "app_name_suffixed", "eden Debug Release") |
|
|
signingConfig = signingConfigs.getByName("default") |
|
|
signingConfig = signingConfigs.getByName("default") |
|
|
isMinifyEnabled = true |
|
|
|
|
|
isDebuggable = true |
|
|
isDebuggable = true |
|
|
proguardFiles( |
|
|
proguardFiles( |
|
|
getDefaultProguardFile("proguard-android.txt"), |
|
|
getDefaultProguardFile("proguard-android.txt"), |
|
|
|