Skip to content

Commit

Permalink
Android Release 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
1technophile committed Apr 23, 2023
1 parent 6687ce8 commit 301c700
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 16 deletions.
2 changes: 1 addition & 1 deletion Theengs.pro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
TARGET = Theengs

VERSION = 1.3.1
VERSION = 1.3.2
DEFINES+= APP_NAME=\\\"$$TARGET\\\"
DEFINES+= APP_VERSION=\\\"$$VERSION\\\"

Expand Down
19 changes: 4 additions & 15 deletions assets/android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.theengs.app" android:installLocation="auto" android:versionCode="01030107" android:versionName="1.3.1">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.theengs.app" android:installLocation="auto" android:versionCode="01030207" android:versionName="1.3.2">

<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:smallScreens="true"/>

Expand All @@ -26,7 +26,6 @@
<uses-feature android:name="android.hardware.location.gps" android:required="false"/>

<application android:name="org.qtproject.qt.android.bindings.QtApplication" android:label="Theengs BLE" android:hardwareAccelerated="true" android:extractNativeLibs="true" android:allowNativeHeapPointerTagging="false" android:theme="@style/AppTheme" android:roundIcon="@mipmap/ic_launcher_round" android:icon="@drawable/icon">

<activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation|mcc|mnc|density" android:name="org.qtproject.qt.android.bindings.QtActivity" android:label="Theengs" android:screenOrientation="unspecified" android:launchMode="singleTop" android:windowSoftInputMode="adjustResize" android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
Expand All @@ -42,8 +41,6 @@
are done populating your window with content. -->
<!-- meta-data android:name="android.app.splash_screen_drawable_portrait" android:resource="@drawable/logo_portrait" / -->
<!-- meta-data android:name="android.app.splash_screen_drawable_landscape" android:resource="@drawable/logo_landscape" / -->
<meta-data android:name="android.app.splash_screen_drawable" android:resource="@drawable/splash"/>
<meta-data android:name="android.app.splash_screen_sticky" android:value="true"/>
<!-- Splash screen -->
<!-- Background running -->
<!-- Warning: changing this value to true may cause unexpected crashes if the
Expand All @@ -53,26 +50,18 @@
<meta-data android:name="android.app.background_running" android:value="false"/>
<!-- Background running -->
<meta-data android:name="android.app.splash_screen_sticky" android:value="true"/>
<meta-data android:name="android.app.splash_screen_sticky" android:value="true"/>
<meta-data android:name="android.app.splash_screen_sticky" android:value="true"/>
<meta-data android:name="android.app.splash_screen_sticky" android:value="true"/>
<meta-data android:name="android.app.splash_screen_sticky" android:value="true"/>
<meta-data android:name="android.app.splash_screen_sticky" android:value="true"/>
</activity>

<!-- Android service(s) -->
<receiver android:name=".TheengsBootServiceBroadcastReceiver" android:exported="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>

<service android:process=":qt_service" android:name=".TheengsAndroidService">
<meta-data android:name="android.app.lib_name" android:value="-- %%INSERT_APP_LIB_NAME%% --"/>
<meta-data android:name="android.app.arguments" android:value="--service"/>
<service android:name=".TheengsAndroidService" android:process=":qt_service">
<meta-data android:name="android.app.background_running" android:value="true"/>
<meta-data android:name="android.app.arguments" android:value="--service"/>
<meta-data android:name="android.app.lib_name" android:value="-- %%INSERT_APP_LIB_NAME%% --"/>
</service>

</application>

</manifest>

0 comments on commit 301c700

Please sign in to comment.