android/ios fix target version handling
This commit is contained in:
parent
402df416f8
commit
a5727492cd
@ -20,6 +20,7 @@
|
||||
|
||||
BUNDLE_NAME := {{=it.product.bundleName}}
|
||||
JAVA_PACKAGE_NAME := {{=it.android.javaPackageName}}
|
||||
ANDROID_VERSION := {{=it.android.androidVersion}}
|
||||
|
||||
{{?(it.android_make?.commonDir || it.make?.commonDir)}}
|
||||
COMMON_DIR := {{=it.android_make?.commonDir ?? (it.make?.commonDir ?? "")}}
|
||||
|
@ -8,7 +8,7 @@
|
||||
{{??}}
|
||||
<uses-sdk android:minSdkVersion="26" /> <!-- for androidx core and AAudio -->
|
||||
{{?}}
|
||||
<uses-sdk android:targetSdkVersion="34" />
|
||||
<uses-sdk android:targetSdkVersion="{{=it.android.androidVersion}}" />
|
||||
<application android:label="{{=it.product.name}}">
|
||||
<activity android:name=".MainActivity" android:label="{{=it.product.name}}" android:exported="true">
|
||||
<intent-filter>
|
||||
|
@ -1,5 +1,6 @@
|
||||
{
|
||||
"android": {
|
||||
"javaPackageName": "com.example.tibia_test"
|
||||
"javaPackageName": "com.example.tibia_test",
|
||||
"androidVersion": "36"
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"ios_make": {
|
||||
"headerSearchPaths": [ "../../../../../miniaudio" ],
|
||||
"deploymentTarget": 16.6
|
||||
"deploymentTarget": "16.6"
|
||||
}
|
||||
}
|
||||
|
@ -57,7 +57,6 @@ ifeq ($(TEMPLATE), android)
|
||||
KOTLIN_DIR := $(HOME)/Android/kotlin
|
||||
NDK_VERSION := 28.0.13004108
|
||||
BUILD_TOOLS_VERSION := 36.0.0
|
||||
ANDROID_VERSION := 36
|
||||
ANDROIDX_CORE_VERSION := 1.16.0
|
||||
ANDROIDX_LIFECYCLE_COMMON_VERSION := 2.8.7
|
||||
ANDROIDX_VERSIONEDPARCELABLE_VERSION := 1.2.1
|
||||
|
Loading…
Reference in New Issue
Block a user