From 83f372c64885867eb525f1fad99d4e4c9b9fb4b5 Mon Sep 17 00:00:00 2001 From: nessi Date: Sun, 28 Jun 2026 10:05:56 +0200 Subject: [PATCH] chore(android): add Gradle properties configuration Add gradle.properties with AndroidX support, Jetifier, SDK 35 compatibility, Kotlin official code style, build caching, and JVM memory settings (3GB heap with UTF-8 encoding). --- android/gradle.properties | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 android/gradle.properties diff --git a/android/gradle.properties b/android/gradle.properties new file mode 100644 index 0000000..e1c465f --- /dev/null +++ b/android/gradle.properties @@ -0,0 +1,6 @@ +android.useAndroidX=true +android.enableJetifier=true +android.suppressUnsupportedCompileSdk=35 +kotlin.code.style=official +org.gradle.caching=true +org.gradle.jvmargs=-Xmx3g -Dfile.encoding=UTF-8