AndroidManifest.xml 2.22 KB
Newer Older
Giang Tran committed
1
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2
  package="com.dcv.invest">
Giang Tran committed
3 4

    <uses-permission android:name="android.permission.INTERNET" />
Giang Tran committed
5
    <uses-permission android:name="android.permission.CAMERA"/>
Giang Tran committed
6 7
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
  <uses-permission android:name="android.permission.VIBRATE" />
Giang Tran committed
8 9 10 11 12
  <uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

Giang Tran committed
13
   
Giang Tran committed
14 15 16 17 18 19
    <application
      android:name=".MainApplication"
      android:label="@string/app_name"
      android:icon="@mipmap/ic_launcher"
      android:roundIcon="@mipmap/ic_launcher_round"
      android:allowBackup="false"
Giang Tran committed
20 21 22
      android:theme="@style/AppTheme"
   android:usesCleartextTraffic="true"
      >
Giang Tran committed
23 24 25 26
 <!-- <meta-data
            android:name="com.google.firebase.messaging.default_notification_color"
            android:resource="@color/bootsplash_background" /> -->

Giang Tran committed
27

Giang Tran committed
28 29 30 31
      <activity
        android:name=".MainActivity"
        android:label="@string/app_name"
        android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
Giang Tran committed
32 33
         android:exported="true"
      android:launchMode="singleTask"
Giang Tran committed
34
        android:windowSoftInputMode="adjustResize">
Giang Tran committed
35 36 37 38 39 40 41 42
        <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="appdcvinvest" android:host="screen"   android:pathPrefix="/"
        />
   </intent-filter>

Giang Tran committed
43
      </activity>
Giang Tran committed
44 45
  <activity
      android:name="com.zoontek.rnbootsplash.RNBootSplashActivity"
Giang Tran committed
46
      android:theme="@style/BootTheme" 
Giang Tran committed
47 48 49 50
      android:launchMode="singleTask">
      <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
Giang Tran committed
51
         
Giang Tran committed
52
      </intent-filter>
Giang Tran committed
53

Giang Tran committed
54
      
Giang Tran committed
55 56


Giang Tran committed
57
    </activity>
Giang Tran committed
58
 
Giang Tran committed
59

Giang Tran committed
60 61 62 63
      <activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
    </application>

</manifest>