Guest User

manifest

a guest
Jun 19th, 2022
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.72 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:tools="http://schemas.android.com/tools"
  4.    package="com.maxet24.chargely">
  5.  
  6.     <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
  7.     <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
  8.     <uses-permission android:name="android.permission.INTERNET"/>
  9.  
  10.     <application
  11.        android:allowBackup="true"
  12.        android:dataExtractionRules="@xml/data_extraction_rules"
  13.        android:fullBackupContent="@xml/backup_rules"
  14.        android:icon="@mipmap/ic_launcher"
  15.        android:label="@string/app_name"
  16.        android:roundIcon="@mipmap/ic_launcher_round"
  17.        android:supportsRtl="true"
  18.        android:theme="@style/Theme.Chargely"
  19.        tools:targetApi="31">
  20.  
  21.         <meta-data
  22.            android:name="com.google.android.geo.API_KEY"
  23.            android:value="${MAPS_API_KEY}" />
  24.  
  25.         <activity
  26.            android:name=".PasswordResetWasSent"
  27.            android:exported="false" />
  28.         <activity
  29.            android:name=".ForgotPassword"
  30.            android:exported="false" />
  31.         <activity
  32.            android:name=".RegPage"
  33.            android:exported="false" />
  34.         <activity
  35.            android:name=".LoginPage"
  36.            android:exported="false" />
  37.         <activity
  38.            android:name=".MainActivity"
  39.            android:exported="true">
  40.             <intent-filter>
  41.                 <action android:name="android.intent.action.MAIN" />
  42.  
  43.                 <category android:name="android.intent.category.LAUNCHER" />
  44.             </intent-filter>
  45.         </activity>
  46.     </application>
  47.  
  48. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment