Skip to content
Snippets Groups Projects
AndroidManifest.xml 1.45 KiB
Newer Older
  • Learn to ignore specific revisions
  • Ethan Charles Vasquez's avatar
    Ethan Charles Vasquez committed
    <?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="com.example.androidfinalproject">
    
    Ethan Charles Vasquez's avatar
    Ethan Charles Vasquez committed
        <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
        <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
    
    
    Ethan Charles Vasquez's avatar
    Ethan Charles Vasquez committed
    
        <application
            android:allowBackup="true"
            android:dataExtractionRules="@xml/data_extraction_rules"
            android:fullBackupContent="@xml/backup_rules"
            android:icon="@mipmap/ic_launcher"
            android:label="@string/app_name"
            android:roundIcon="@mipmap/ic_launcher_round"
            android:supportsRtl="true"
            android:theme="@style/Theme.AndroidFinalProject"
            tools:targetApi="31">
    
    Ethan Charles Vasquez's avatar
    Ethan Charles Vasquez committed
    
            <meta-data
                android:name="com.google.android.geo.API_KEY"
                android:value="AIzaSyD4Vdbg7DwxEJkRtIj4Rk_00WHZxVzOUIY" />
            <meta-data
                android:name="com.google.android.gms.version"
                android:value="@integer/google_play_services_version" />
    
    
    
    Ethan Charles Vasquez's avatar
    Ethan Charles Vasquez committed
            <activity
                android:name=".MainActivity"
                android:exported="true">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
    
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
        </application>
    
    </manifest>