Fix Google Play requirements: targetSdk 35 and R8 ProGuard minify, release 23.01.9

This commit is contained in:
2026-06-23 20:13:06 +02:00
parent e4c70499cc
commit e9d3f4d4de
5 changed files with 13 additions and 5 deletions
+2 -2
View File
@@ -92,8 +92,8 @@ android {
applicationId 'de.orfel.schnappix' applicationId 'de.orfel.schnappix'
minSdkVersion rootProject.ext.minSdkVersion minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 8 versionCode 9
versionName "23.01.8" versionName "23.01.9"
buildConfigField "String", "REACT_NATIVE_RELEASE_LEVEL", "\"${findProperty('reactNativeReleaseLevel') ?: 'stable'}\"" buildConfigField "String", "REACT_NATIVE_RELEASE_LEVEL", "\"${findProperty('reactNativeReleaseLevel') ?: 'stable'}\""
} }
+3 -1
View File
@@ -64,7 +64,9 @@ expo.useLegacyPackaging=false
# WARNING: This property has been deprecated and will be removed in Expo SDK 55. Use `edgeToEdgeEnabled` or `react.edgeToEdgeEnabled` to determine whether the project is using edge-to-edge. # WARNING: This property has been deprecated and will be removed in Expo SDK 55. Use `edgeToEdgeEnabled` or `react.edgeToEdgeEnabled` to determine whether the project is using edge-to-edge.
expo.edgeToEdgeEnabled=true expo.edgeToEdgeEnabled=true
android.targetSdkVersion=33 android.targetSdkVersion=35
android.compileSdkVersion=35
android.enableMinifyInReleaseBuilds=true
android.extraMavenRepos=[{"url":"https://jitpack.io"}] android.extraMavenRepos=[{"url":"https://jitpack.io"}]
# Release-Signierungsschlüssel (Hier Passwörter eintragen) # Release-Signierungsschlüssel (Hier Passwörter eintragen)
Binary file not shown.
Binary file not shown.
+5 -2
View File
@@ -3,7 +3,7 @@
"newArchEnabled": true, "newArchEnabled": true,
"name": "Schnappix", "name": "Schnappix",
"slug": "Schnappix", "slug": "Schnappix",
"version": "23.01.8", "version": "23.01.9",
"orientation": "landscape", "orientation": "landscape",
"icon": "./Icon.png", "icon": "./Icon.png",
"userInterfaceStyle": "dark", "userInterfaceStyle": "dark",
@@ -13,7 +13,7 @@
}, },
"android": { "android": {
"package": "de.orfel.schnappix", "package": "de.orfel.schnappix",
"versionCode": 8, "versionCode": 9,
"adaptiveIcon": { "adaptiveIcon": {
"backgroundColor": "#050510", "backgroundColor": "#050510",
"foregroundImage": "./Icon-padded.png" "foregroundImage": "./Icon-padded.png"
@@ -46,6 +46,9 @@
"expo-build-properties", "expo-build-properties",
{ {
"android": { "android": {
"compileSdkVersion": 35,
"targetSdkVersion": 35,
"enableProguardInReleaseBuilds": true,
"extraMavenRepos": [ "extraMavenRepos": [
"https://jitpack.io" "https://jitpack.io"
] ]