fix: ATAK plugins bindService failure on Android 13+

Since ATAK removed the [QUERY_ALL_PACKAGES permission](https://github.com/deptofdefense/AndroidTacticalAssaultKit-CIV/blob/4.6.0.5/atak/ATAK/app/src/main/AndroidManifest.xml#L156-L158) binding services for ATAK plugins running Android 13+ require the 'com.atakmap.app.component' activity with intent-filter added to the manifest.
pull/688/head
andrekir 2023-08-19 07:50:36 -03:00
rodzic a589febd8d
commit 66ee722a91
1 zmienionych plików z 10 dodań i 0 usunięć

Wyświetl plik

@ -196,6 +196,16 @@
<activity
android:name=".AppIntroduction"/>
<!-- allow for plugin discovery -->
<activity
android:name="com.atakmap.app.component"
android:exported="true"
tools:ignore="MissingClass">
<intent-filter android:label="@string/app_name">
<action android:name="com.atakmap.app.component" />
</intent-filter>
</activity>
</application>
</manifest>