/
valeriano
/
ftm
Обзор
Документация
Войти
/
valeriano
/
ftm
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
app/src/main/AndroidManifest.xml
55 строк
2 KB
Valeriy Blagodarniy
Add WebDAV protocol support
12 июн 2026, 18:44
Не верифицирован
12 июн 2026, 18:44
d3f44f8
Код
Авторство
О чём код?
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android"> <uses-permission android:name="android.permission.INTERNET" /> <application android:name="com.github.minimi.ftm.App" android:allowBackup="false" android:dataExtractionRules="@xml/data_extraction_rules" android:fullBackupContent="@xml/backup_rules" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/Theme.FTM" android:networkSecurityConfig="@xml/network_security_config"> <activity android:name="com.github.minimi.ftm.MainActivity" android:exported="true" android:launchMode="singleTop"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> <intent-filter> <action android:name="android.intent.action.SEND" /> <category android:name="android.intent.category.DEFAULT" /> <data android:mimeType="*/*" /> </intent-filter> <intent-filter> <action android:name="android.intent.action.SEND_MULTIPLE" /> <category android:name="android.intent.category.DEFAULT" /> <data android:mimeType="*/*" /> </intent-filter> </activity> <provider android:name="com.github.minimi.ftm.saf.Provider" android:authorities="com.github.minimi.ftm.storageprovider" android:enabled="true" android:exported="true" android:grantUriPermissions="true" android:label="@string/app_name" android:permission="android.permission.MANAGE_DOCUMENTS"> <intent-filter> <action android:name="android.content.action.DOCUMENTS_PROVIDER" /> </intent-filter> </provider> </application> </manifest>