2018-10-30 01:59:02 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-10-29 21:49:42 +00:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-12-14 18:12:42 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
package="cy.agorise.bitsybitshareswallet">
|
2018-10-30 01:59:02 +00:00
|
|
|
|
2018-12-14 18:12:42 +00:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
|
2018-12-15 00:46:01 +00:00
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
2018-12-14 18:12:42 +00:00
|
|
|
<uses-permission android:name="android.permission.CAMERA"/>
|
2018-12-21 02:28:31 +00:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
2018-12-04 17:33:58 +00:00
|
|
|
|
2018-10-30 01:59:02 +00:00
|
|
|
<application
|
2018-11-23 02:13:10 +00:00
|
|
|
android:name=".utils.BitsyApplication"
|
|
|
|
android:allowBackup="true"
|
2019-09-26 15:33:16 +00:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
2018-11-23 02:13:10 +00:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/Theme.Bitsy"
|
|
|
|
tools:ignore="GoogleAppIndexingWarning">
|
2018-12-14 18:12:42 +00:00
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="com.google.android.geo.API_KEY"
|
|
|
|
android:value="@string/google_maps_key"/>
|
2019-01-31 18:18:21 +00:00
|
|
|
<!-- Avoid Crashlytics crash collection for all users/builds -->
|
2019-01-31 03:38:01 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="firebase_crashlytics_collection_enabled"
|
|
|
|
android:value="false" />
|
2019-01-22 16:17:22 +00:00
|
|
|
<!-- Avoid crashes with Google maps in SDK 28 (Android 9 [Pie]) -->
|
|
|
|
<uses-library android:name="org.apache.http.legacy" android:required="false"/>
|
2018-11-21 20:47:21 +00:00
|
|
|
<activity
|
2018-11-23 02:13:10 +00:00
|
|
|
android:name=".activities.SplashActivity"
|
|
|
|
android:theme="@style/SplashTheme">
|
2018-10-30 01:59:02 +00:00
|
|
|
<intent-filter>
|
2018-10-30 18:41:09 +00:00
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
2019-04-12 01:43:58 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2018-10-30 18:41:09 +00:00
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
2018-10-30 01:59:02 +00:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2018-12-07 21:18:23 +00:00
|
|
|
<activity
|
|
|
|
android:name=".activities.MainActivity"
|
2018-12-13 16:16:57 +00:00
|
|
|
android:screenOrientation="portrait"
|
2019-03-20 17:04:05 +00:00
|
|
|
android:theme="@style/Theme.Bitsy"
|
2019-04-12 01:43:58 +00:00
|
|
|
android:windowSoftInputMode="adjustPan">
|
|
|
|
|
|
|
|
<nav-graph android:value="@navigation/mobile_navigation" />
|
|
|
|
</activity>
|
2019-01-29 16:25:21 +00:00
|
|
|
<!-- Used to share Images like the QR code and the eReceipt -->
|
2018-12-22 00:12:34 +00:00
|
|
|
<provider
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
|
|
|
android:authorities="cy.agorise.bitsybitshareswallet.FileProvider"
|
|
|
|
android:grantUriPermissions="true"
|
|
|
|
android:exported="false">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/tmp_image_path" />
|
|
|
|
</provider>
|
2018-10-30 01:59:02 +00:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|