2019-03-05 07:33:58 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-04-28 18:54:22 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools" package="com.example.myapplication">
|
2019-03-05 07:33:58 +01:00
|
|
|
|
2019-03-24 14:37:13 +01:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2019-03-05 07:33:58 +01:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher_v1"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round_v1"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/AppTheme"
|
2019-03-24 14:37:13 +01:00
|
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
2019-05-10 20:44:08 +02:00
|
|
|
android:usesCleartextTraffic="true" >
|
2019-03-24 14:37:13 +01:00
|
|
|
<uses-library
|
|
|
|
android:name="org.apache.http.legacy"
|
|
|
|
android:required="false" />
|
2019-06-15 19:13:52 +02:00
|
|
|
<activity android:name="com.darkweb.genesissearchengine.appManager.application_controller"
|
2019-03-05 07:33:58 +01:00
|
|
|
android:screenOrientation="portrait" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
2019-05-10 20:44:08 +02:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2019-03-05 07:33:58 +01:00
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2019-05-10 20:44:08 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="io.fabric.ApiKey"
|
2019-06-15 19:13:52 +02:00
|
|
|
android:value="be76c64dae2519d4ab8daaed88298da14c7c294f"
|
2019-05-10 20:44:08 +02:00
|
|
|
/>
|
2019-03-05 07:33:58 +01:00
|
|
|
<meta-data
|
|
|
|
android:name="com.google.android.gms.ads.APPLICATION_ID"
|
|
|
|
android:value="ca-app-pub-5074525529134731~2926711128"/>
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|