Sync android project with docker build image

This commit is contained in:
Michał Janiszewski 2024-03-11 20:59:03 +01:00
parent 9524174d13
commit 5c00047bd1
3 changed files with 5 additions and 4 deletions

View File

@ -1,13 +1,13 @@
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
android { android {
compileSdkVersion 31 compileSdk 34
buildToolsVersion "34.0.0" buildToolsVersion "34.0.0"
ndkVersion "26.2.11394342" // Latest r26c (LTS), to be synced with CI container image ndkVersion "26.2.11394342" // Latest r26c (LTS), to be synced with CI container image
namespace "io.openrct2" namespace "io.openrct2"
defaultConfig { defaultConfig {
applicationId 'io.openrct2' applicationId 'io.openrct2'
minSdkVersion 19 minSdkVersion 21
targetSdkVersion 28 targetSdkVersion 28
versionCode 2 versionCode 2

View File

@ -6,7 +6,7 @@ buildscript {
google() google()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:8.3.0-alpha10' classpath 'com.android.tools.build:gradle:8.3.0'
// NOTE: Do not place your application dependencies here; they belong // NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files // in the individual module build.gradle files

View File

@ -16,6 +16,7 @@
# This option should only be used with decoupled projects. More details, visit # This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true # org.gradle.parallel=true
android.enableJetifier=true android.enableJetifier=false
android.useAndroidX=true android.useAndroidX=true
org.gradle.configuration-cache=true
org.gradle.jvmargs=-Xmx4096m org.gradle.jvmargs=-Xmx4096m