|
|
@ -27,7 +27,7 @@ val autoVersion = (((System.currentTimeMillis() / 1000) - 1451606400) / 10).toIn |
|
|
android { |
|
|
android { |
|
|
namespace = "org.yuzu.yuzu_emu" |
|
|
namespace = "org.yuzu.yuzu_emu" |
|
|
|
|
|
|
|
|
compileSdkVersion = "android-34" |
|
|
|
|
|
|
|
|
compileSdkVersion = "android-35" |
|
|
ndkVersion = "26.1.10909125" |
|
|
ndkVersion = "26.1.10909125" |
|
|
|
|
|
|
|
|
buildFeatures { |
|
|
buildFeatures { |
|
|
@ -35,12 +35,12 @@ android { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
compileOptions { |
|
|
compileOptions { |
|
|
sourceCompatibility = JavaVersion.VERSION_17 |
|
|
|
|
|
targetCompatibility = JavaVersion.VERSION_17 |
|
|
|
|
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_21 |
|
|
|
|
|
targetCompatibility = JavaVersion.VERSION_21 |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
kotlinOptions { |
|
|
kotlinOptions { |
|
|
jvmTarget = "17" |
|
|
|
|
|
|
|
|
jvmTarget = "21" |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
packaging { |
|
|
packaging { |
|
|
@ -56,7 +56,7 @@ android { |
|
|
// TODO If this is ever modified, change application_id in strings.xml |
|
|
// TODO If this is ever modified, change application_id in strings.xml |
|
|
applicationId = "org.yuzu.yuzu_emu" |
|
|
applicationId = "org.yuzu.yuzu_emu" |
|
|
minSdk = 30 |
|
|
minSdk = 30 |
|
|
targetSdk = 34 |
|
|
|
|
|
|
|
|
targetSdk = 35 |
|
|
versionName = getGitVersion() |
|
|
versionName = getGitVersion() |
|
|
|
|
|
|
|
|
versionCode = if (System.getenv("AUTO_VERSIONED") == "true") { |
|
|
versionCode = if (System.getenv("AUTO_VERSIONED") == "true") { |
|
|
|