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

View File

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

View File

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