summaryrefslogtreecommitdiff
path: root/startop
diff options
context:
space:
mode:
authorAshwini Oruganti <ashfall@google.com>2020-03-23 18:38:40 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2020-03-23 18:38:40 +0000
commite989c5e734230dfdfe859c0a97c8576839945833 (patch)
tree9acc5da0e8d802bd0c029ecce32957d18eac011b /startop
parent5dc3088cc1e311fae2e28a48d2fd060919d3f0e7 (diff)
parente178c24db3abb8d1ebaba5052b05c99204dc6c88 (diff)
Merge "Add an exported flag in manifest"
Diffstat (limited to 'startop')
-rw-r--r--startop/apps/ColorChanging/app/src/main/AndroidManifest.xml25
1 files changed, 13 insertions, 12 deletions
diff --git a/startop/apps/ColorChanging/app/src/main/AndroidManifest.xml b/startop/apps/ColorChanging/app/src/main/AndroidManifest.xml
index 37193b5ff596..2186d207f13d 100644
--- a/startop/apps/ColorChanging/app/src/main/AndroidManifest.xml
+++ b/startop/apps/ColorChanging/app/src/main/AndroidManifest.xml
@@ -1,21 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.android.startop.colorchanging">
+ package="com.android.startop.colorchanging">
- <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="com.android.startop.colorchanging.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="com.android.startop.colorchanging.MainActivity"
+ android:exported="true">
<intent-filter>
- <action android:name="android.intent.action.MAIN" />
+ <action android:name="android.intent.action.MAIN"/>
- <category android:name="android.intent.category.LAUNCHER" />
+ <category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
-</manifest> \ No newline at end of file
+</manifest>