Updated build spec

This commit is contained in:
Mark Qvist 2023-02-03 20:32:35 +01:00
parent 0cafdff745
commit 0bd99d3505
3 changed files with 5 additions and 4 deletions

View File

@ -20,7 +20,8 @@ icon.filename = %(source.dir)s/assets/icon.png
presplash.filename = %(source.dir)s/assets/presplash_small.png presplash.filename = %(source.dir)s/assets/presplash_small.png
android.presplash_color = #00000000 android.presplash_color = #00000000
orientation = all # TODO: Fix
orientation = portrait
fullscreen = 0 fullscreen = 0
android.permissions = INTERNET,POST_NOTIFICATIONS,WAKE_LOCK,FOREGROUND_SERVICE,CHANGE_WIFI_MULTICAST_STATE,BLUETOOTH_CONNECT android.permissions = INTERNET,POST_NOTIFICATIONS,WAKE_LOCK,FOREGROUND_SERVICE,CHANGE_WIFI_MULTICAST_STATE,BLUETOOTH_CONNECT

View File

@ -1,6 +1,6 @@
__debug_build__ = False __debug_build__ = False
__disable_shaders__ = True __disable_shaders__ = True
__version__ = "0.5.1" __version__ = "0.5.2"
__variant__ = "beta" __variant__ = "beta"
import sys import sys

View File

@ -78,7 +78,7 @@
<activity android:name="{{args.android_entrypoint}}" <activity android:name="{{args.android_entrypoint}}"
android:label="@string/app_name" android:label="@string/app_name"
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|fontScale|uiMode{% if args.min_sdk_version >= 8 %}|uiMode{% endif %}{% if args.min_sdk_version >= 13 %}|screenSize|smallestScreenSize{% endif %}{% if args.min_sdk_version >= 17 %}|layoutDirection{% endif %}{% if args.min_sdk_version >= 24 %}|density{% endif %}" android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|fontScale|uiMode{% if args.min_sdk_version >= 8 %}|uiMode{% endif %}{% if args.min_sdk_version >= 13 %}|screenSize|smallestScreenSize{% endif %}{% if args.min_sdk_version >= 17 %}|layoutDirection{% endif %}{% if args.min_sdk_version >= 24 %}|density{% endif %}"
android:screenOrientation="{{ args.orientation }}" android:screenOrientation="user"
android:exported="true" android:exported="true"
{% if args.activity_launch_mode %} {% if args.activity_launch_mode %}
android:launchMode="{{ args.activity_launch_mode }}" android:launchMode="{{ args.activity_launch_mode }}"
@ -147,7 +147,7 @@
{% endfor %} {% endfor %}
<provider <provider
android:name="android.support.v4.content.FileProvider" android:name="androidx.core.content.FileProvider"
android:authorities="io.unsigned.sideband.provider" android:authorities="io.unsigned.sideband.provider"
android:exported="false" android:exported="false"
android:grantUriPermissions="true"> android:grantUriPermissions="true">