android:exported="true"
添加标签后,我在清单文件中收到有关我的 AppWidget 配置活动的警告。这就是它的样子……
<activity android:name=".widgets.WidgetConfigurationActivity"
android:theme="@android:style/Theme.Translucent"
android:exported="true" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
</activity>
我收到的警告是“导出的活动不需要许可”。根据我的理解,将exported
标签设置为 true 意味着与我的应用程序无关的另一个应用程序可以访问它(这是有道理的,因为主屏幕启动器应用程序需要启动我的 AppWidget 的配置活动)。有谁知道我需要在这里添加什么样的权限才能使其不出错?