AndroidManifest.xml (1633B)
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 20 <uses-permission android:name="android.permission.INTERNET" /> 21 <application 22 android:allowBackup="true" 23 android:icon="@mipmap/ic_launcher" 24 android:label="@string/app_name" 25 android:roundIcon="@mipmap/ic_launcher_round" 26 android:supportsRtl="true" 27 android:theme="@style/Theme.Talerandroid"> 28 <activity 29 android:name=".MainActivity" 30 android:exported="true" 31 android:label="@string/app_name" 32 android:theme="@style/Theme.Talerandroid"> 33 <intent-filter> 34 <action android:name="android.intent.action.MAIN" /> 35 36 <category android:name="android.intent.category.LAUNCHER" /> 37 </intent-filter> 38 </activity> 39 </application> 40 41 </manifest>