Updated build spec
This commit is contained in:
parent
0cafdff745
commit
0bd99d3505
|
@ -20,7 +20,8 @@ icon.filename = %(source.dir)s/assets/icon.png
|
|||
presplash.filename = %(source.dir)s/assets/presplash_small.png
|
||||
android.presplash_color = #00000000
|
||||
|
||||
orientation = all
|
||||
# TODO: Fix
|
||||
orientation = portrait
|
||||
fullscreen = 0
|
||||
|
||||
android.permissions = INTERNET,POST_NOTIFICATIONS,WAKE_LOCK,FOREGROUND_SERVICE,CHANGE_WIFI_MULTICAST_STATE,BLUETOOTH_CONNECT
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
__debug_build__ = False
|
||||
__disable_shaders__ = True
|
||||
__version__ = "0.5.1"
|
||||
__version__ = "0.5.2"
|
||||
__variant__ = "beta"
|
||||
|
||||
import sys
|
||||
|
|
|
@ -78,7 +78,7 @@
|
|||
<activity android:name="{{args.android_entrypoint}}"
|
||||
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:screenOrientation="{{ args.orientation }}"
|
||||
android:screenOrientation="user"
|
||||
android:exported="true"
|
||||
{% if args.activity_launch_mode %}
|
||||
android:launchMode="{{ args.activity_launch_mode }}"
|
||||
|
@ -147,7 +147,7 @@
|
|||
{% endfor %}
|
||||
|
||||
<provider
|
||||
android:name="android.support.v4.content.FileProvider"
|
||||
android:name="androidx.core.content.FileProvider"
|
||||
android:authorities="io.unsigned.sideband.provider"
|
||||
android:exported="false"
|
||||
android:grantUriPermissions="true">
|
||||
|
|
Loading…
Reference in New Issue