* Android: Lower SDK version to 21, like the VS project that preceded it.

A temporary solution for the navbar issue.
This commit is contained in:
iProgramInCpp
2023-11-03 23:55:26 +02:00
parent 3be8984c63
commit 3e8650761b
2 changed files with 6 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ plugins {
android {
namespace 'com.reminecraftpe'
compileSdk 34
compileSdk 21
// Employ a hack which copies the assets folder in to the local assets folder.
task CopyAssets(type: Copy) {
@@ -20,7 +20,9 @@ android {
defaultConfig {
applicationId "com.reminecraftpe"
minSdk 16
targetSdk 31
// Don't inspect the target SDK. You'd better not intend to upload this to the Google Play Store.
//noinspection ExpiredTargetSdkVersion
targetSdk 21
versionCode 1
versionName "1.0"

View File

@@ -3,10 +3,11 @@
xmlns:tools="http://schemas.android.com/tools">
<!-- This is the platform API where NativeActivity was introduced. -->
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="31"/>
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21"/>
<application
android:hasCode="false"
android:theme="@android:style/Theme.NoTitleBar"
android:label="@string/app_name"
tools:targetApi="21">