Skip to content

Commit

Permalink
Modify App/Client/android/AndroidManifest.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
KangLin committed Feb 11, 2025
1 parent 174b5e8 commit 1006f02
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
BUILD_TYPE: [Release, Debug]
os: [ubuntu-24.04, ubuntu-24.04-arm]
os: [ubuntu-24.04, ubuntu-24.04-arm, ubuntu-24.04-aarch64]

# See: [About GitHub-hosted runners](https://docs.github.com/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners)
# See: [Choosing the runner for a job](https://docs.github.com/actions/writing-workflows/choosing-where-your-workflow-runs/choosing-the-runner-for-a-job)
Expand All @@ -31,7 +31,7 @@ jobs:
TOOLS_DIR: ${{github.workspace}}/.cache/tools
INSTALL_DIR: ${{github.workspace}}/.cache/install
RabbitRemoteControl_VERSION: 0.0.32
artifact_name: build_ubuntu
artifact_name: build_${{matrix.os}}

# Map the job outputs to step outputs
outputs:
Expand Down
7 changes: 6 additions & 1 deletion App/Client/android/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,15 @@
android:hardwareAccelerated="true"
android:name="org.qtproject.qt.android.bindings.QtApplication"
android:label="@string/app_name"
android:icon="@drawable/icon">
android:icon="@drawable/icon"
android:requestLegacyExternalStorage="true"
android:allowNativeHeapPointerTagging="false"
android:allowBackup="true"
android:fullBackupOnly="false">

<activity android:name="org.qtproject.qt.android.bindings.QtActivity"
android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation|mcc|mnc|density"
android:label="@string/app_name"
android:launchMode="singleTop"
android:screenOrientation="unspecified"
android:exported="true">
Expand Down

0 comments on commit 1006f02

Please sign in to comment.