Update props_ui.py

change the UI to reflect common order to setup Android SDK values
https://developer.android.com/guide/topics/manifest/uses-sdk-element.html
android:minSdkVersion="integer"
then
android:targetSdkVersion="integer"
then
android:maxSdkVersion="integer"
This commit is contained in:
onelsonic 2021-09-06 15:33:16 +02:00 committed by GitHub
parent 55cfead084
commit abc52627a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -742,9 +742,9 @@ class ARM_PT_ArmoryExporterAndroidSettingsPanel(ExporterTargetSettingsMixin, bpy
col = layout.column()
col.prop(wrd, 'arm_winorient')
col.prop(wrd, 'arm_project_android_sdk_compile')
col.prop(wrd, 'arm_project_android_sdk_min')
col.prop(wrd, 'arm_project_android_sdk_target')
col.prop(wrd, 'arm_project_android_sdk_compile')
class ARM_PT_ArmoryExporterAndroidPermissionsPanel(bpy.types.Panel):