mirror of
https://github.com/openMF/mifos-mobile.git
synced 2026-02-06 11:26:51 +00:00
100 lines
4.0 KiB
XML
100 lines
4.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright 2024 Mifos Initiative
|
|
|
|
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
|
|
If a copy of the MPL was not distributed with this file,
|
|
You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
See https://github.com/openMF/mobile-mobile/blob/master/LICENSE.md
|
|
-->
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<uses-feature
|
|
android:name="android.hardware.camera"
|
|
android:required="false" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
|
|
|
<uses-permission
|
|
android:name="com.google.android.gms.permission.AD_ID"
|
|
tools:node="remove" />
|
|
|
|
<application
|
|
android:name=".MifosSelfServiceApp"
|
|
android:allowBackup="false"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/feature_about_app_name"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.MifosSplash">
|
|
<activity
|
|
android:name=".HomeActivity"
|
|
android:exported="true"
|
|
android:theme="@style/Theme.MifosSplash"
|
|
android:windowSoftInputMode="adjustPan">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<meta-data
|
|
android:name="com.google.mlkit.vision.DEPENDENCIES"
|
|
android:value="barcode_ui" />
|
|
<meta-data
|
|
android:name="com.google.android.gms.version"
|
|
android:value="@integer/google_play_services_version" />
|
|
<meta-data
|
|
android:name="com.google.android.geo.API_KEY"
|
|
android:value="@string/google_maps_key" />
|
|
|
|
<activity
|
|
android:name="com.google.android.gms.oss.licenses.OssLicensesMenuActivity"
|
|
android:configChanges="orientation|screenSize"
|
|
android:theme="@style/Theme.AppCompat.DayNight"
|
|
android:windowSoftInputMode="adjustResize" />
|
|
<activity
|
|
android:name="com.google.android.gms.oss.licenses.OssLicensesActivity"
|
|
android:configChanges="orientation|screenSize"
|
|
android:theme="@style/Theme.AppCompat.DayNight"
|
|
android:windowSoftInputMode="adjustResize" />
|
|
|
|
<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/fileproviderpath" />
|
|
</provider>
|
|
|
|
<!-- Prompt Google Play services to install the backported photo picker module -->
|
|
<service android:name="com.google.android.gms.metadata.ModuleDependencies" android:enabled="false" android:exported="false">
|
|
<intent-filter>
|
|
<action android:name="com.google.android.gms.metadata.MODULE_DEPENDENCIES" />
|
|
</intent-filter>
|
|
|
|
<meta-data android:name="photopicker_activity:0:required" android:value="" />
|
|
</service>
|
|
|
|
<!-- Disable Firebase analytics by default. This setting is overwritten for the `prod` flavor -->
|
|
<meta-data
|
|
android:name="firebase_analytics_collection_deactivated"
|
|
android:value="true" />
|
|
<!-- Disable collection of AD_ID for all build variants -->
|
|
<meta-data
|
|
android:name="google_analytics_adid_collection_enabled"
|
|
android:value="false" />
|
|
<!-- Firebase automatically adds the following property which we don't use so remove it -->
|
|
<property
|
|
android:name="android.adservices.AD_SERVICES_CONFIG"
|
|
tools:node="remove" />
|
|
</application>
|
|
|
|
</manifest>
|