diff options
| author | 2019-10-31 19:58:58 +0000 | |
|---|---|---|
| committer | 2019-10-31 19:58:58 +0000 | |
| commit | c3d7e24dc1803f63a85675b01a6a1373f0e2261c (patch) | |
| tree | bc89b54d4f12c17a8ef17c8ac29802dfca80bf3b | |
| parent | b6b8c731a47c28e260e139e855086ccb656032e0 (diff) | |
| parent | 8cf4996fdf20326f406daeda642fe27ed49ca79b (diff) | |
Merge "Set a good example - don't export ExamplePlugin"
| -rw-r--r-- | packages/SystemUI/plugin/ExamplePlugin/AndroidManifest.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/SystemUI/plugin/ExamplePlugin/AndroidManifest.xml b/packages/SystemUI/plugin/ExamplePlugin/AndroidManifest.xml index ff89bbcb455f..e9e844124e43 100644 --- a/packages/SystemUI/plugin/ExamplePlugin/AndroidManifest.xml +++ b/packages/SystemUI/plugin/ExamplePlugin/AndroidManifest.xml @@ -22,14 +22,16 @@ <application> <activity android:name=".PluginSettings" - android:label="@string/plugin_label"> + android:label="@string/plugin_label" + android:exported="false"> <intent-filter> <action android:name="com.android.systemui.action.PLUGIN_SETTINGS" /> </intent-filter> </activity> <service android:name=".SampleOverlayPlugin" - android:label="@string/plugin_label"> + android:label="@string/plugin_label" + android:exported="false"> <intent-filter> <action android:name="com.android.systemui.action.PLUGIN_OVERLAY" /> </intent-filter> |