tor-browser

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

AndroidManifest.xml (1824B)


      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 
     11    <application
     12        android:allowBackup="true"
     13        android:fullBackupContent="@xml/backup_rules"
     14        android:icon="@mipmap/ic_launcher"
     15        android:roundIcon="@mipmap/ic_launcher_round"
     16        android:label="@string/app_name"
     17        android:supportsRtl="true"
     18        android:theme="@style/Theme.AppCompat.Light.DarkActionBar"
     19        android:dataExtractionRules="@xml/data_extraction_rules"
     20        tools:targetApi="s">
     21        <activity
     22            android:name="org.mozilla.samples.relay.MainActivity"
     23            android:launchMode="singleTask"
     24            android:windowSoftInputMode="adjustResize"
     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>