tor-browser

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

AndroidManifest.xml (1246B)


      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 
     10    <application
     11        android:allowBackup="true"
     12        android:fullBackupContent="@xml/backup_rules"
     13        android:icon="@mipmap/ic_launcher"
     14        android:roundIcon="@mipmap/ic_launcher_round"
     15        android:label="@string/app_name"
     16        android:supportsRtl="true"
     17        android:theme="@style/Theme.AppCompat.NoActionBar"
     18        android:dataExtractionRules="@xml/data_extraction_rules"
     19        tools:targetApi="s"
     20        tools:ignore="DataExtractionRules">
     21        <activity android:name=".ToolbarActivity" android:exported="true">
     22            <intent-filter>
     23                <action android:name="android.intent.action.MAIN" />
     24 
     25                <category android:name="android.intent.category.LAUNCHER" />
     26            </intent-filter>
     27        </activity>
     28    </application>
     29 </manifest>