tor-browser

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

AndroidManifest.xml (810B)


      1 <?xml version="1.0" encoding="utf-8"?><!-- This Source Code Form is subject to the terms of the Mozilla Public
      2   - License, v. 2.0. If a copy of the MPL was not distributed with this
      3   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
      4 
      5 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      6    xmlns:tools="http://schemas.android.com/tools">
      7 
      8    <application tools:ignore="MissingApplicationIcon">
      9        <activity
     10            android:name=".HomeActivity"
     11            android:exported="true"
     12            tools:node="merge">
     13            <intent-filter>
     14                <action android:name="android.intent.action.MAIN" />
     15                <category android:name="android.intent.category.LAUNCHER" />
     16            </intent-filter>
     17        </activity>
     18    </application>
     19 </manifest>