0

我正在扩展应用程序。在另一个测试中,所有东西都在同一个包中,一切都很顺利。现在,我确实有多个包并且应用程序崩溃了。我想,我想念清单中的路径?

    <application
    android:name=".MyInheritedApplication" 
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >

任何提示表示赞赏!

谢谢,马库斯

4

1 回答 1

0

确保您package的 -tag 中的 -attributemanifest设置正确。

例子

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.demo.android"
    ... >

</manifest

每个application人都有自己的-name属性,将使用它package来建立自己的路径。

于 2012-07-11T07:57:55.827 回答