mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-26 00:34:18 +01:00
Update build.gradle to remove deprecated properties
This commit is contained in:
parent
2cdff40bcb
commit
42e0cc4290
@ -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()
|
||||||
|
Loading…
Reference in New Issue
Block a user