Merge "Add explicit exported tags" into stage-aosp-master

This commit is contained in:
Colin Cross
2021-09-15 18:19:47 +00:00
committed by Android (Google) Code Review
3 changed files with 8 additions and 4 deletions

View File

@@ -27,7 +27,8 @@
android:label="@string/md_launcher"
android:theme="@style/LauncherTheme"
android:launchMode="singleTop"
android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout|colorMode|density">
android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout|colorMode|density"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.HOME" />
@@ -39,7 +40,8 @@
<service
android:name=".wallpaper.SampleWallpaper"
android:permission="android.permission.BIND_WALLPAPER">
android:permission="android.permission.BIND_WALLPAPER"
android:exported="true">
<intent-filter>
<action android:name="android.service.wallpaper.WallpaperService">
</action>
@@ -52,4 +54,4 @@
</application>
</manifest>
</manifest>

View File

@@ -21,7 +21,8 @@
<application android:label="@string/app_title"
android:resizeableActivity="true">
<activity android:name="ShortcutLauncherMain">
<activity android:name="ShortcutLauncherMain"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />

View File

@@ -22,6 +22,7 @@
android:theme="@android:style/Theme.Holo">
<activity
android:name=".WiFiDirectActivity"
android:exported="true"
android:label="@string/app_name" android:launchMode="singleTask">
<intent-filter>
<action