/
githubmirror
/
shadowsocks-android
Обзор
Документация
Войти
/
githubmirror
/
shadowsocks-android
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
mobile/src/main/AndroidManifest.xml
127 строк
5 KB
Mygod
Target API 35
28 авг 2024, 22:03
28 авг 2024, 22:03
712148e
Код
Авторство
О чём код?
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" tools:ignore="MissingLeanbackSupport"> <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" tools:ignore="QueryAllPackagesPermission" /> <uses-permission android:name="android.permission.CAMERA" /> <uses-feature android:name="android.hardware.touchscreen" android:required="false"/> <uses-feature android:name="android.hardware.camera" android:required="false"/> <uses-feature android:name="android.software.leanback" android:required="false"/> <application android:name=".App" android:localeConfig="@xml/locales_config" tools:ignore="MissingTvBanner"> <activity android:name=".MainActivity" android:label="@string/app_name" android:exported="true" android:theme="@style/Theme.Shadowsocks.Immersive.Navigation" android:launchMode="singleTask"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> <category android:name="android.intent.category.LEANBACK_LAUNCHER"/> </intent-filter> <intent-filter> <action android:name="android.service.quicksettings.action.QS_TILE_PREFERENCES" /> </intent-filter> <meta-data android:name="android.app.shortcuts" android:resource="@xml/shortcuts"/> </activity> <activity android:name=".ProfileConfigActivity" android:exported="false" android:theme="@style/Theme.Shadowsocks.Immersive" android:excludeFromRecents="true" android:label="@string/profile_config" android:launchMode="singleTask"/> <activity android:name=".AppManager" android:exported="false" android:label="@string/proxied_apps" android:parentActivityName=".ProfileConfigActivity" android:theme="@style/Theme.Shadowsocks.Immersive" android:launchMode="singleTask" android:excludeFromRecents="true"/> <activity android:name=".UdpFallbackProfileActivity" android:exported="false" android:label="@string/udp_fallback" android:theme="@style/Theme.Shadowsocks.Immersive" android:launchMode="singleTask" android:excludeFromRecents="true"/> <activity android:name=".ScannerActivity" android:exported="true" android:label="@string/add_profile_methods_scan_qr_code" android:parentActivityName=".MainActivity" android:theme="@style/Theme.Shadowsocks.Immersive.Navigation" android:launchMode="singleTask" android:screenOrientation="locked" android:excludeFromRecents="true"/> <activity android:name=".tasker.ConfigActivity" android:exported="true" android:theme="@style/Theme.Shadowsocks.Immersive"> <intent-filter> <action android:name="com.twofortyfouram.locale.intent.action.EDIT_SETTING" /> </intent-filter> </activity> <activity android:name=".QuickToggleShortcut" android:label="@string/quick_toggle" android:theme="@android:style/Theme.Translucent.NoTitleBar" android:exported="true" android:launchMode="singleTask" android:excludeFromRecents="true" android:taskAffinity="" android:process=":bg"> <intent-filter> <action android:name="android.intent.action.CREATE_SHORTCUT" /> </intent-filter> </activity> <service android:name=".bg.TileService" android:label="@string/quick_toggle" android:process=":bg" android:exported="true" android:directBootAware="true" android:icon="@drawable/ic_service_active" android:permission="android.permission.BIND_QUICK_SETTINGS_TILE" tools:targetApi="n"> <intent-filter> <action android:name="android.service.quicksettings.action.QS_TILE" /> </intent-filter> <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE" android:value="true" /> </service> <receiver android:name=".tasker.ActionListener" android:process=":bg" android:directBootAware="true" android:exported="true" tools:ignore="ExportedReceiver"> <intent-filter> <action android:name="com.twofortyfouram.locale.intent.action.FIRE_SETTING"/> </intent-filter> </receiver> <meta-data android:name="com.google.android.gms.ads.APPLICATION_ID" android:value="ca-app-pub-3283768469187309~3571758745"/> </application> </manifest>