summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author TreeHugger Robot <treehugger-gerrit@google.com> 2019-10-31 19:58:58 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2019-10-31 19:58:58 +0000
commitc3d7e24dc1803f63a85675b01a6a1373f0e2261c (patch)
treebc89b54d4f12c17a8ef17c8ac29802dfca80bf3b
parentb6b8c731a47c28e260e139e855086ccb656032e0 (diff)
parent8cf4996fdf20326f406daeda642fe27ed49ca79b (diff)
Merge "Set a good example - don't export ExamplePlugin"
-rw-r--r--packages/SystemUI/plugin/ExamplePlugin/AndroidManifest.xml6
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>