|
|
@@ -1,7 +1,5 @@
|
|
|
-<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
- package="com.bigauction.mobile">
|
|
|
-
|
|
|
+<?xml version="1.0" encoding="utf-8" ?>
|
|
|
+<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.bigauction.mobile">
|
|
|
<application
|
|
|
android:allowBackup="true"
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
@@ -9,11 +7,9 @@
|
|
|
android:supportsRtl="true"
|
|
|
android:theme="@style/AppTheme"
|
|
|
android:usesCleartextTraffic="true">
|
|
|
- <meta-data
|
|
|
- android:name="com.openinstall.APP_KEY"
|
|
|
- android:value="crgkm2"/>
|
|
|
- <meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/facebook_app_id"/>
|
|
|
- <meta-data android:name="com.facebook.sdk.ClientToken" android:value="@string/facebook_client_token"/>
|
|
|
+ <meta-data android:name="com.openinstall.APP_KEY" android:value="crgkm2" />
|
|
|
+ <meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/facebook_app_id" />
|
|
|
+ <meta-data android:name="com.facebook.sdk.ClientToken" android:value="@string/facebook_client_token" />
|
|
|
<activity
|
|
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode"
|
|
|
android:name="com.bigauction.mobile.MainActivity"
|
|
|
@@ -21,24 +17,21 @@
|
|
|
android:theme="@style/AppTheme.NoActionBarLaunch"
|
|
|
android:launchMode="singleInstance"
|
|
|
android:exported="true">
|
|
|
-
|
|
|
<intent-filter>
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
</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="crgkm2"/>
|
|
|
+ <action android:name="android.intent.action.VIEW" />
|
|
|
+ <category android:name="android.intent.category.DEFAULT" />
|
|
|
+ <category android:name="android.intent.category.BROWSABLE" />
|
|
|
+ <data android:scheme="crgkm2" />
|
|
|
</intent-filter>
|
|
|
- <intent-filter android:autoVerify="true">
|
|
|
+ <intent-filter android:autoVerify="true">
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
- <data android:scheme="https"
|
|
|
- android:host="ifirstcash.onelink.me"
|
|
|
- android:pathPrefix="/cQAJ" />
|
|
|
+ <data android:scheme="https" android:host="ifirstcash.onelink.me" android:pathPrefix="/cQAJ" />
|
|
|
</intent-filter>
|
|
|
<intent-filter>
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
@@ -48,13 +41,12 @@
|
|
|
</intent-filter>
|
|
|
</activity>
|
|
|
|
|
|
- <activity android:name="com.facebook.FacebookActivity"
|
|
|
- android:configChanges=
|
|
|
- "keyboard|keyboardHidden|screenLayout|screenSize|orientation"
|
|
|
- android:label="@string/app_name" />
|
|
|
<activity
|
|
|
- android:name="com.facebook.CustomTabActivity"
|
|
|
- android:exported="true">
|
|
|
+ android:name="com.facebook.FacebookActivity"
|
|
|
+ android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
|
|
|
+ android:label="@string/app_name"
|
|
|
+ />
|
|
|
+ <activity android:name="com.facebook.CustomTabActivity" android:exported="true">
|
|
|
<intent-filter>
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
@@ -63,25 +55,21 @@
|
|
|
</intent-filter>
|
|
|
</activity>
|
|
|
|
|
|
-
|
|
|
<provider
|
|
|
android:name="androidx.core.content.FileProvider"
|
|
|
android:authorities="${applicationId}.fileprovider"
|
|
|
android:exported="false"
|
|
|
android:grantUriPermissions="true">
|
|
|
- <meta-data
|
|
|
- android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
- android:resource="@xml/file_paths"></meta-data>
|
|
|
+ <meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/file_paths" />
|
|
|
</provider>
|
|
|
</application>
|
|
|
|
|
|
<!-- Permissions -->
|
|
|
|
|
|
<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.READ_EXTERNAL_STORAGE"/>
|
|
|
+ <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
+ <uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
|
|
+ <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
<uses-permission android:name="com.google.android.gms.permission.AD_ID" />
|
|
|
-
|
|
|
</manifest>
|