警告:导出的活动不需要许可

时间:2012-07-04 18:32:02

标签: android android-layout android-manifest

我最近创建了一个项目并添加了一个启动和主要活动。我编辑了清单文件,并将启动活动和主要活动添加到其中。添加主活动后,它会向我发出警告“导出的活动不需要权限”。这给了我什么警告?我的API版本是android:15。

请帮忙, 谢谢!

这是我的清单文件!

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.sliit.droidman"
android:versionCode="1"
android:versionName="1.0">

<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="15" />

<application android:label="@string/app_name"
    android:icon="@drawable/ic_launcher"
    android:theme="@style/AppTheme">
    <activity
        android:name=".SplashActivity"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.NoTitleBar">
        <intent-filter>
            <action android:name="android.intent.action.MAIN"/>
            <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>
    </activity>        
    <activity
        android:name="com.sliit.droidman.main.MainActivity"
        android:label="@string/app_name">
        <intent-filter>
            <action android:name="com.sliit.droidman.main.MAINACTIVITY" />
            <category android:name="android.intent.category.DEFAULT"/>
        </intent-filter>
    </activity>
</application>

</manifest>

3 个答案:

答案 0 :(得分:75)

将此添加到您的活动定义

android:exported="false"

答案 1 :(得分:30)

此警告表示您的活动会暴露给可能在没有任何必要权限的情况下实例化它们的不同流程应用。

详细信息请参阅: http://developer.android.com/guide/topics/manifest/activity-element.html http://developer.android.com/guide/topics/manifest/activity-element.html#prmsn

答案 2 :(得分:26)

可能是由于<action android:name="com.sliit.droidman.main.MAINACTIVITY" />。我不知道你为什么要添加那个意图过滤器?

您通常不需要为其他正常活动使用intent-filter。