2020-01-24 16:23:31 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-02-28 19:10:00 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
package="com.example.myapplication">
|
|
|
|
<!-- Permissions -->
|
2020-01-24 16:23:31 +01:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2020-02-28 19:10:00 +01:00
|
|
|
<uses-permission android:name="android.permission.READ_CLIPBOARD" />
|
2020-01-24 16:23:31 +01:00
|
|
|
|
|
|
|
<application
|
2020-02-28 19:10:00 +01:00
|
|
|
android:allowBackup="true"
|
2020-01-24 16:23:31 +01:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
|
2020-02-28 19:10:00 +01:00
|
|
|
android:fullBackupContent="false"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:networkSecurityConfig="@xml/ex_network_security_config"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/AppTheme"
|
|
|
|
android:usesCleartextTraffic="true">
|
|
|
|
<!-- Activities -->
|
2020-01-24 16:23:31 +01:00
|
|
|
<activity
|
2020-02-28 19:10:00 +01:00
|
|
|
android:name="com.darkweb.genesissearchengine.appManager.orbotManager.orbotController"
|
|
|
|
android:launchMode="singleTop" />
|
|
|
|
<activity
|
|
|
|
android:name="com.darkweb.genesissearchengine.appManager.settingManager.settingController"
|
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
|
|
|
|
android:label="@string/title_activity_setting_controller"
|
|
|
|
android:windowSoftInputMode="adjustNothing" />
|
|
|
|
<activity
|
|
|
|
android:name="com.darkweb.genesissearchengine.appManager.historyManager.historyController"
|
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
|
|
|
|
android:windowSoftInputMode="adjustNothing" />
|
2020-01-24 16:23:31 +01:00
|
|
|
<activity
|
|
|
|
android:name="com.darkweb.genesissearchengine.appManager.bookmarkManager.bookmarkController"
|
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
|
|
|
|
android:windowSoftInputMode="adjustNothing" />
|
2020-02-28 19:10:00 +01:00
|
|
|
<activity
|
|
|
|
android:name="com.darkweb.genesissearchengine.appManager.bridgeManager.bridgeController"
|
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2020-01-24 16:23:31 +01:00
|
|
|
<activity
|
|
|
|
android:name="com.darkweb.genesissearchengine.appManager.tabManager.tabController"
|
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
|
2020-02-28 19:10:00 +01:00
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:windowSoftInputMode="adjustNothing" />
|
|
|
|
<activity
|
|
|
|
android:name="com.darkweb.genesissearchengine.appManager.landingManager.landingController"
|
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
|
2020-01-24 16:23:31 +01:00
|
|
|
android:windowSoftInputMode="adjustNothing" />
|
|
|
|
<activity
|
|
|
|
android:name="com.darkweb.genesissearchengine.appManager.homeManager.homeController"
|
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
|
2020-02-28 19:10:00 +01:00
|
|
|
android:launchMode="singleTask"
|
2020-01-24 16:23:31 +01:00
|
|
|
android:screenOrientation="portrait"
|
|
|
|
android:windowSoftInputMode="adjustResize">
|
|
|
|
<intent-filter>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
2020-02-28 19:10:00 +01:00
|
|
|
|
2020-01-24 16:23:31 +01:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
|
|
|
<data android:scheme="bridge" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
|
|
|
<action android:name="org.torproject.android.REQUEST_HS_PORT" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
|
|
|
<action android:name="org.torproject.android.START_TOR" />
|
|
|
|
</intent-filter>
|
2020-02-28 19:10:00 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2020-01-24 16:23:31 +01:00
|
|
|
|
2020-02-28 19:10:00 +01:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
|
|
|
<data android:scheme="http" />
|
|
|
|
<data android:scheme="https" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
|
|
|
<data android:scheme="http" />
|
|
|
|
<data android:scheme="https" />
|
|
|
|
<data android:mimeType="text/html" />
|
|
|
|
<data android:mimeType="text/plain" />
|
|
|
|
<data android:mimeType="application/xhtml+xml" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2020-01-24 16:23:31 +01:00
|
|
|
|
2020-02-28 19:10:00 +01:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
|
|
|
<data
|
|
|
|
android:host="content"
|
|
|
|
android:scheme="rocket" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity> <!-- Services & Settings -->
|
2020-01-24 16:23:31 +01:00
|
|
|
<uses-library
|
2020-02-28 19:10:00 +01:00
|
|
|
android:name="org.apache.http.legacy"
|
|
|
|
android:required="false" />
|
2020-01-24 16:23:31 +01:00
|
|
|
|
|
|
|
<meta-data
|
2020-02-28 19:10:00 +01:00
|
|
|
android:name="io.fabric.ApiKey"
|
|
|
|
android:value="be76c64dae2519d4ab8daaed88298da14c7c294f" />
|
2020-01-24 16:23:31 +01:00
|
|
|
<meta-data
|
2020-02-28 19:10:00 +01:00
|
|
|
android:name="com.google.android.gms.ads.APPLICATION_ID"
|
|
|
|
android:value="ca-app-pub-5074525529134731~2926711128" />
|
2020-01-24 16:23:31 +01:00
|
|
|
|
|
|
|
<service
|
|
|
|
android:name="com.darkweb.genesissearchengine.pluginManager.exitManager"
|
|
|
|
android:stopWithTask="false" />
|
|
|
|
<service
|
2020-02-28 19:10:00 +01:00
|
|
|
android:name="com.darkweb.genesissearchengine.helperManager.downloadFileService"
|
|
|
|
android:enabled="true"
|
|
|
|
android:exported="false"
|
|
|
|
android:stopWithTask="true" />
|
2020-01-24 16:23:31 +01:00
|
|
|
<service
|
|
|
|
android:name="org.torproject.android.service.TorService"
|
|
|
|
android:enabled="true"
|
2020-02-28 19:10:00 +01:00
|
|
|
android:exported="false"
|
|
|
|
android:stopWithTask="true" />
|
2020-01-24 16:23:31 +01:00
|
|
|
|
|
|
|
<receiver
|
|
|
|
android:name="org.torproject.android.service.StartTorReceiver"
|
|
|
|
android:exported="true"
|
2020-02-28 19:10:00 +01:00
|
|
|
android:permission="TODO"
|
|
|
|
android:stopWithTask="true">
|
2020-01-24 16:23:31 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="org.torproject.android.intent.action.USER_PRESENT" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
</application>
|
|
|
|
|
2019-03-05 07:33:58 +01:00
|
|
|
</manifest>
|