AndroidManifest.xml (2280B)
1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- 3 ~ This file is part of GNU Taler 4 ~ (C) 2024 Taler Systems S.A. 5 ~ 6 ~ GNU Taler is free software; you can redistribute it and/or modify it under the 7 ~ terms of the GNU General Public License as published by the Free Software 8 ~ Foundation; either version 3, or (at your option) any later version. 9 ~ 10 ~ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY 11 ~ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 12 ~ A PARTICULAR PURPOSE. See the GNU General Public License for more details. 13 ~ 14 ~ You should have received a copy of the GNU General Public License along with 15 ~ GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/> 16 --> 17 18 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 19 xmlns:tools="http://schemas.android.com/tools"> 20 21 <application 22 android:allowBackup="true" 23 android:dataExtractionRules="@xml/data_extraction_rules" 24 android:fullBackupContent="@xml/backup_rules" 25 android:icon="@mipmap/ic_launcher" 26 android:label="@string/app_name" 27 android:roundIcon="@mipmap/ic_launcher_round" 28 android:supportsRtl="true" 29 android:theme="@style/Theme.AnastasisTestDriverApp" 30 tools:targetApi="31"> 31 <activity 32 android:name="net.taler.anastasistestdriverapp.MainActivity" 33 android:exported="true" 34 android:label="@string/app_name" 35 android:theme="@style/Theme.AnastasisTestDriverApp"> 36 <intent-filter> 37 <action android:name="android.intent.action.MAIN" /> 38 39 <category android:name="android.intent.category.LAUNCHER" /> 40 </intent-filter> 41 </activity> 42 43 <provider 44 android:name="androidx.core.content.FileProvider" 45 android:authorities="net.taler.anastasistestdriverapp.fileprovider" 46 android:exported="false" 47 android:grantUriPermissions="true" 48 tools:replace="android:authorities"> 49 <meta-data 50 android:name="android.support.FILE_PROVIDER_PATHS" 51 android:resource="@xml/provider_paths" /> 52 </provider> 53 </application> 54 55 </manifest>