This blocks submissions to F-Droid repository, and is not necessary. https://stuff.mit.edu/afs/sipb/project/android/docs/google/play/licensing/adding-licensing.html https://developer.android.com/google/play/licensing/client-side-verification#manifest-permission https://raccoon.onyxbits.de/blog/android-permissions-explained-com-android-vending-check_license-210 As far as I cn tell this permission might be coming from [react-native-blob-util](https://github.com/RonRadtke/react-native-blob-util): https://github.com/RonRadtke/react-native-blob-util/blob/e5a0bc274673d3bfcc08ad49d2218d0a9780c5b3/android/src/main/AndroidManifest.xml#L4-L5 Signed-off-by: Jakub Sokołowski <jakub@status.im>
12 lines
697 B
XML
12 lines
697 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<!-- These are added by React Native for debug mode, but actually aren't needed in release mode -->
|
|
<uses-permission tools:node="remove" android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
|
|
<!-- Remove licensing permission since we don't license our app and it blocks F-Droid submissions. -->
|
|
<uses-permission tools:node="remove" android:name="com.android.vending.CHECK_LICENSE"/>
|
|
|
|
<application tools:targetApi="28" tools:ignore="GoogleAppIndexingWarning" android:usesCleartextTraffic="true" />
|
|
</manifest>
|