是在android中找不到提供程序的任何解决方案?

时间:2011-07-08 12:59:16

标签: android-xml

错误是:

[2011-07-08 18:30:54 - Android2Wrox.com]安装错误:INSTALL_PARSE_FAILED_MANIFEST_MALFORMED [2011-07-08 18:30:54 - Android2Wrox.com]请查看logcat输出以获取更多详细信息。 [2011-07-08 18:30:54 - Android2Wrox.com]发布取消!

-

当我在AndroidManifest.xml文件中实现两个应用程序时,我遇到了更多这种类型的错误:我已经提供了这个XML代码:

    

<application android:icon="@drawable/icon" android:label="@string/app_name">
    <activity android:name="Android2Wrox.comActivity"
        android:label="@string/app_name" android:theme="@style/Android2Wrox"
        android:configChanges="orientation|keyboardHidden">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

</application>

<application android:name="MyApplication" android:icon="@drawable/image">

</application>

07-08 16:42:46.101: ERROR/ActivityThread(464): Failed to find provider info for com.google.settings
07-08 16:42:46.101: ERROR/ActivityThread(464): Failed to find provider info for com.google.settings
07-08 16:43:02.069: ERROR/ActivityThread(464): Failed to find provider info for com.google.settings
07-08 16:43:02.229: ERROR/ActivityThread(464): Failed to find provider info for com.google.settings
07-08 16:43:02.489: ERROR/ActivityThread(464): Failed to find provider info for com.google.settings
07-08 16:43:02.739: ERROR/ActivityThread(464): Failed to find provider info for com.google.settings
07-08 16:43:02.849: ERROR/ActivityThread(464): Failed to find provider info for com.google.settings
07-08 16:43:03.029: ERROR/ActivityThread(464): Failed to find provider info for com.google.settings
07-08 16:43:03.119: ERROR/ActivityThread(464): Failed to find provider info for com.google.settings
07-08 16:43:03.239: ERROR/ActivityThread(464): Failed to find provider info for com.google.settings
07-08 16:43:03.359: ERROR/ActivityThread(464): Failed to find provider info for com.google.settings
07-08 16:43:03.969: ERROR/ActivityThread(464): Failed to find provider info for com.google.settings
07-08 16:43:04.269: ERROR/ActivityThread(464): Failed to find provider info for com.google.settings
07-08 16:43:04.702: ERROR/ActivityThread(464): Failed to find provider info for com.google.settings
07-08 16:43:04.939: ERROR/ActivityThread(464): Failed to find provider info for com.google.settings
07-08 17:46:37.180: ERROR/DictionaryBackupAgent(196): Couldn't read from the cursor

1 个答案:

答案 0 :(得分:-1)

您是否在INTERNET申请了AndroidManifest.xml权限?即。

<uses-permission android:name="android.permission.INTERNET" />