summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshwini Oruganti <ashfall@google.com>2020-05-20 18:47:51 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-05-20 18:47:51 +0000
commite2f9e0754772bd122adfd8d06756e22ed9305d1d (patch)
tree6259701826ebab20f5c66fa50c6b04ff5f58c32b
parent414210769cbe3ab244ec4af9eef1648e4933f863 (diff)
parentef1a285ed636f35f3488dc464bf3737d4f22f4d8 (diff)
downloadSampleLocationAttribution-e2f9e0754772bd122adfd8d06756e22ed9305d1d.tar.gz
Add an exported flag in manifest am: ef1a285ed6android-r-beta-3android-r-beta-2
Change-Id: Ie302ac01b969d2af586d6f4a7f668900d447f3e7
-rw-r--r--AndroidManifest.xml39
1 files changed, 21 insertions, 18 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 04029ca..c6acaf6 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -14,32 +14,35 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.example.android.locationattribution">
+ package="com.example.android.locationattribution">
- <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
- <!-- Requires permission "Allow all the time" and not just "Allow only while the app is in use" -->
- <uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />
+ <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
+ <!-- Requires permission "Allow all the time"
+ and not just "Allow only while the app is in use"
+ -->
+ <uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION"/>
- <application
- android:allowBackup="true"
- android:icon="@mipmap/ic_launcher"
- android:label="@string/app_name"
- android:roundIcon="@mipmap/ic_launcher_round"
- android:supportsRtl="true"
- android:theme="@style/AppTheme">
- <activity android:name=".MainActivity">
+ <application android:allowBackup="true"
+ android:icon="@mipmap/ic_launcher"
+ android:label="@string/app_name"
+ android:roundIcon="@mipmap/ic_launcher_round"
+ android:supportsRtl="true"
+ android:theme="@style/AppTheme">
+ <activity android:name=".MainActivity"
+ android:exported="true">
<intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
+ <action android:name="android.intent.action.MAIN"/>
+ <category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
<intent-filter>
- <action android:name="android.intent.action.APPLICATION_PREFERENCES" />
- <category android:name="android.intent.category.DEFAULT" />
+ <action android:name="android.intent.action.APPLICATION_PREFERENCES"/>
+ <category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
<intent-filter>
- <action android:name="com.example.android.locationattribution.intent.action.NON_FRAMEWORK_LOCATION" />
- <category android:name="android.intent.category.DEFAULT" />
+ <action android:name="com.example.android.locationattribution.intent.action.NON_FRAMEWORK_LOCATION"/>
+ <category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
</application>