之后我加入了我得到此警告在清单文件我AppWidget的配置活动android:exported="true"
标签。 这是什么样子?
<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的配置活动)。 有谁知道我需要在这里添加,使这个不会报错,什么样的权限?