tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

AndroidManifest.xml (1880B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
      3   - License, v. 2.0. If a copy of the MPL was not distributed with this
      4   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
      5 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      6    xmlns:tools="http://schemas.android.com/tools">
      7 
      8    <uses-permission android:name="android.permission.INTERNET" />
      9    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
     10    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
     11        android:maxSdkVersion="28" />
     12 
     13    <application
     14        android:allowBackup="true"
     15        android:fullBackupContent="@xml/backup_rules"
     16        android:icon="@mipmap/ic_launcher"
     17        android:label="@string/app_name"
     18        android:supportsRtl="true"
     19        android:theme="@style/Theme.AppCompat.Light.DarkActionBar"
     20        android:dataExtractionRules="@xml/data_extraction_rules"
     21        tools:targetApi="s">
     22        <activity android:name="org.mozilla.samples.sync.logins.MainActivity"
     23            android:windowSoftInputMode="adjustResize"
     24            android:launchMode="singleTask"
     25            android:exported="true">
     26            <intent-filter>
     27                <action android:name="android.intent.action.MAIN" />
     28 
     29                <category android:name="android.intent.category.LAUNCHER" />
     30            </intent-filter>
     31            <intent-filter>
     32                <action android:name="android.intent.action.VIEW" />
     33                <category android:name="android.intent.category.BROWSABLE" />
     34                <category android:name="android.intent.category.DEFAULT" />
     35                <data
     36                    android:host="*"
     37                    android:scheme="fxaclient" />
     38            </intent-filter>
     39        </activity>
     40    </application>
     41 </manifest>