kopia lustrzana https://github.com/meshtastic/Meshtastic-Android
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
rodzic
a589febd8d
commit
66ee722a91
|
@ -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>
|
||||
|
|
Ładowanie…
Reference in New Issue