Fix: Remove targetSdkVersion override to prevent Play Protect older version warning

This commit is contained in:
2026-06-13 00:32:27 +02:00
parent 94fd5a84f8
commit 70e2652bc8
7 changed files with 6 additions and 13 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 3 versionCode 1
versionName "23.01.3" versionName "23.01.1"
buildConfigField "String", "REACT_NATIVE_RELEASE_LEVEL", "\"${findProperty('reactNativeReleaseLevel') ?: 'stable'}\"" buildConfigField "String", "REACT_NATIVE_RELEASE_LEVEL", "\"${findProperty('reactNativeReleaseLevel') ?: 'stable'}\""
} }
+1 -1
View File
@@ -64,5 +64,5 @@ 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.extraMavenRepos=[{"url":"https://jitpack.io"}] android.extraMavenRepos=[{"url":"https://jitpack.io"}]
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+3 -4
View File
@@ -3,7 +3,7 @@
"newArchEnabled": true, "newArchEnabled": true,
"name": "Schnappix", "name": "Schnappix",
"slug": "Schnappix", "slug": "Schnappix",
"version": "23.01.3", "version": "23.01.1",
"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": 3, "versionCode": 1,
"adaptiveIcon": { "adaptiveIcon": {
"backgroundColor": "#050510", "backgroundColor": "#050510",
"foregroundImage": "./Icon-padded.png" "foregroundImage": "./Icon-padded.png"
@@ -47,8 +47,7 @@
"android": { "android": {
"extraMavenRepos": [ "extraMavenRepos": [
"https://jitpack.io" "https://jitpack.io"
], ]
"targetSdkVersion": 33
} }
} }
], ],