blob: c6acaf67ec1c958881b5efd1adf77cedbe5d8aa6 [file] [log] [blame]
Anil Admal54ae2482019-04-10 17:05:30 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright 2019 The Android Open Source Project
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
Ashwini Orugantief1a2852020-03-23 15:45:56 -070017
Anil Admal54ae2482019-04-10 17:05:30 -070018<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Ashwini Orugantief1a2852020-03-23 15:45:56 -070019 package="com.example.android.locationattribution">
Anil Admal54ae2482019-04-10 17:05:30 -070020
Ashwini Orugantief1a2852020-03-23 15:45:56 -070021 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
22 <!-- Requires permission "Allow all the time"
23 and not just "Allow only while the app is in use"
24 -->
25 <uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION"/>
Anil Admal54ae2482019-04-10 17:05:30 -070026
Ashwini Orugantief1a2852020-03-23 15:45:56 -070027 <application android:allowBackup="true"
28 android:icon="@mipmap/ic_launcher"
29 android:label="@string/app_name"
30 android:roundIcon="@mipmap/ic_launcher_round"
31 android:supportsRtl="true"
32 android:theme="@style/AppTheme">
33 <activity android:name=".MainActivity"
34 android:exported="true">
Anil Admal54ae2482019-04-10 17:05:30 -070035 <intent-filter>
Ashwini Orugantief1a2852020-03-23 15:45:56 -070036 <action android:name="android.intent.action.MAIN"/>
37 <category android:name="android.intent.category.LAUNCHER"/>
Anil Admal54ae2482019-04-10 17:05:30 -070038 </intent-filter>
39 <intent-filter>
Ashwini Orugantief1a2852020-03-23 15:45:56 -070040 <action android:name="android.intent.action.APPLICATION_PREFERENCES"/>
41 <category android:name="android.intent.category.DEFAULT"/>
Anil Admal54ae2482019-04-10 17:05:30 -070042 </intent-filter>
43 <intent-filter>
Ashwini Orugantief1a2852020-03-23 15:45:56 -070044 <action android:name="com.example.android.locationattribution.intent.action.NON_FRAMEWORK_LOCATION"/>
45 <category android:name="android.intent.category.DEFAULT"/>
Anil Admal54ae2482019-04-10 17:05:30 -070046 </intent-filter>
47 </activity>
48 </application>
49</manifest>