64 lines
No EOL
2.8 KiB
XML
64 lines
No EOL
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="cy.agorise.bitsybitshareswallet">
|
|
|
|
<!--
|
|
The ACCESS_COARSE/FINE_LOCATION permissions are not required to use
|
|
Google Maps Android API v2, but you must specify either coarse or fine
|
|
location permissions for the 'MyLocation' functionality.
|
|
-->
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
<uses-permission android:name="android.permission.CAMERA"/>
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
|
|
<application
|
|
android:name=".utils.BitsyApplication"
|
|
android:allowBackup="true"
|
|
android:icon="@drawable/ic_bitsy_logo"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@drawable/ic_bitsy_logo"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.Bitsy"
|
|
tools:ignore="GoogleAppIndexingWarning">
|
|
|
|
<!--
|
|
The API key for Google Maps-based APIs is defined as a string resource.
|
|
(See the file "res/values/google_maps_api.xml").
|
|
Note that the API key is linked to the encryption key used to sign the APK.
|
|
You need a different API key for each encryption key, including the release key that is used to
|
|
sign the APK for publishing.
|
|
You can define the keys for the debug and release targets in src/debug/ and src/release/.
|
|
-->
|
|
<meta-data
|
|
android:name="com.google.android.geo.API_KEY"
|
|
android:value="@string/google_maps_key"/>
|
|
<activity
|
|
android:name=".activities.SplashActivity"
|
|
android:theme="@style/SplashTheme">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".activities.MainActivity"
|
|
android:screenOrientation="portrait"
|
|
android:theme="@style/Theme.Bitsy.NoActionBar"
|
|
android:windowSoftInputMode="adjustPan"/>
|
|
<!-- Used to share QR code on QRCodeActivity -->
|
|
<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>
|
|
</application>
|
|
|
|
</manifest> |