mirror of
https://github.com/touchHLE/touchHLE.git
synced 2026-01-31 01:25:24 +01:00
I upgraded to Android Studio 2024.3.2 Patch 1 locally, and then:
- The AGP and Gradle versions were bumped using Android Studio's
Upgrade Assistant. It also made some required config changes:
- The package name was moved from AndroidManifest.xml to
build.gradle
- Some stuff was added to gradle.properties
- I updated the CI and build docs for these changes.
- The Kotlin plugin version was manually updated due to an
incompatibility with the newer JDK bundled with Android Studio,
as suggested here: https://stackoverflow.com/a/79167210
- JDK target versions for Java and Kotlin were specified in order
to fix the newly-fatal error when they don't match.
Change-Id: I4a9e838cf4b3f8243fc66d4dc3a4e1b3194a8baf
28 lines
1.2 KiB
Properties
28 lines
1.2 KiB
Properties
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
#
|
|
# Parts of this file are derived from SDL 2's Android project template, which
|
|
# has a different license. Please see vendor/SDL/LICENSE.txt for details.
|
|
|
|
# Project-wide Gradle settings.
|
|
|
|
# IDE (e.g. Android Studio) users:
|
|
# Gradle settings configured through the IDE *will override*
|
|
# any settings specified in this file.
|
|
|
|
# For more details on how to configure your build environment visit
|
|
# http://www.gradle.org/docs/current/userguide/build_environment.html
|
|
|
|
# Specifies the JVM arguments used for the daemon process.
|
|
# The setting is particularly useful for tweaking memory settings.
|
|
android.defaults.buildfeatures.buildconfig=true
|
|
android.nonFinalResIds=false
|
|
android.nonTransitiveRClass=false
|
|
org.gradle.jvmargs=-Xmx1536m
|
|
|
|
# When configured, Gradle will run in incubating parallel mode.
|
|
# 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
|
|
# org.gradle.parallel=true
|