Ignore permissions to use our services.

This commit is contained in:
Vitor Pamplona
2025-04-24 16:42:43 -04:00
parent 7b040933d5
commit fdc95a656f
3 changed files with 7 additions and 4 deletions

View File

@@ -120,7 +120,8 @@
<activity <activity
android:name="com.journeyapps.barcodescanner.CaptureActivity" android:name="com.journeyapps.barcodescanner.CaptureActivity"
android:screenOrientation="fullSensor" android:screenOrientation="fullSensor"
tools:replace="screenOrientation" /> tools:replace="screenOrientation"
tools:ignore="DiscouragedApi" />
<activity <activity
android:name=".service.playback.pip.PipVideoActivity" android:name=".service.playback.pip.PipVideoActivity"
@@ -137,7 +138,8 @@
android:name=".service.playback.service.PlaybackService" android:name=".service.playback.service.PlaybackService"
android:foregroundServiceType="mediaPlayback" android:foregroundServiceType="mediaPlayback"
android:stopWithTask="true" android:stopWithTask="true"
android:exported="true"> android:exported="true"
tools:ignore="ExportedService">
<intent-filter> <intent-filter>
<action android:name="androidx.media3.session.MediaSessionService"/> <action android:name="androidx.media3.session.MediaSessionService"/>
<action android:name="android.media.browse.MediaBrowserService"/> <action android:name="android.media.browse.MediaBrowserService"/>
@@ -157,6 +159,7 @@
<receiver <receiver
android:name=".service.notifications.PokeyReceiver" android:name=".service.notifications.PokeyReceiver"
android:exported="true" android:exported="true"
tools:ignore="ExportedReceiver"
> >
<intent-filter> <intent-filter>
<action android:name="com.shared.NOSTR" /> <action android:name="com.shared.NOSTR" />

View File

@@ -8,7 +8,7 @@
<service <service
android:name=".service.notifications.PushNotificationReceiverService" android:name=".service.notifications.PushNotificationReceiverService"
android:exported="true" android:exported="true"
> tools:ignore="ExportedService">
<intent-filter> <intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/> <action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter> </intent-filter>

View File

@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> <manifest>
</manifest> </manifest>