Android报unable to instantiate application

Android应用程序启动的时候,后台可能会报unable to instantiate application异常

以下是原因分析和解决方法:

 可能原因1:   

          android:name="com.ershouhuowang.activity.LaunchApplication"
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >

解决方法1

AndroidManifest.xml中的application里的android:name去掉

 

可能原因2:

全局类 private 或者 变量private

解决方法2

将全局类 或者 变量 修改为public

 

可能原因3:

package 路径错误

解决方法3

package路径修改正确

 

可能原因4:

String mStrKey = getString(R.string.baidu_map_key);

在Application类里从strings文件获取字符串会报空点异常

解决方法4

在Application类里不要从strings文件获取字符串 

你可能感兴趣的:(Android报unable to instantiate application)