Skip to content

Commit

Permalink
Fix startup error in Android with Qt 5.15.x.
Browse files Browse the repository at this point in the history
This is a known bug(*) with Qt 5.15 that causes libraries to not be
found when android:extractNativeLibs is left to default to false.  It
is not clear why some other developers are not affected by this.
Maybe something in their environment makes it default to true.

(*)See https://bugreports.qt.io/browse/QTBUG-61072 for details.
  • Loading branch information
David Engel committed Mar 23, 2022
1 parent 8558b31 commit 659c5ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/AndroidManifest.xml.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<manifest package="org.mythtv.mythfrontend" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.0" android:versionCode="1" android:installLocation="auto">
<application android:hardwareAccelerated="true" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="mythfrontend" android:icon="@drawable/ic_launcher" android:banner="@drawable/banner" android:debuggable="true" android:theme="@style/AppTheme" >
<application android:hardwareAccelerated="true" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="mythfrontend" android:icon="@drawable/ic_launcher" android:banner="@drawable/banner" android:debuggable="true" android:theme="@style/AppTheme" android:extractNativeLibs="true" >
<activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation" android:name="org.qtproject.qt5.android.bindings.QtActivity" android:label="mythfrontend" android:screenOrientation="landscape" android:launchMode="singleTop" android:noHistory="false">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
Expand Down

0 comments on commit 659c5ba

Please sign in to comment.