Update build.gradle to remove deprecated properties

This commit is contained in:
lynxnb 2023-01-24 17:15:19 +01:00 committed by Niccolò Betto
parent 2cdff40bcb
commit 42e0cc4290

View File

@ -15,21 +15,21 @@ idea.module {
android { android {
namespace 'emu.skyline' namespace 'emu.skyline'
compileSdk 33
var isBuildSigned = (System.getenv("CI") == "true") && (System.getenv("IS_SKYLINE_SIGNED") == "true") var isBuildSigned = (System.getenv("CI") == "true") && (System.getenv("IS_SKYLINE_SIGNED") == "true")
compileSdkVersion 33
buildToolsVersion '33.0.0'
defaultConfig { defaultConfig {
applicationId "skyline.emu" applicationId "skyline.emu"
minSdkVersion 29 minSdk 29
targetSdkVersion 33 targetSdk 33
versionCode 3 versionCode 3
versionName "0.0.3" versionName "0.0.3"
ndk { ndk {
//noinspection ChromeOsAbiSupport
abiFilters "arm64-v8a" abiFilters "arm64-v8a"
} }
@ -45,8 +45,8 @@ android {
/* JVM Bytecode Options */ /* JVM Bytecode Options */
def javaVersion = JavaVersion.VERSION_1_8 def javaVersion = JavaVersion.VERSION_1_8
compileOptions { compileOptions {
sourceCompatibility = javaVersion sourceCompatibility javaVersion
targetCompatibility = javaVersion targetCompatibility javaVersion
} }
kotlinOptions { kotlinOptions {
jvmTarget = javaVersion.toString() jvmTarget = javaVersion.toString()