本文主要是介绍Didn't find class com.android.tools.fd.runtime.BootstrapApplication,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在部分机器上开启开启Instantrun,出现“ClassNotFoundException: Didn't find class"com.android.tools.fd.runtime.BootstrapApplication" on path:DexPathList”问题,可以通过下面的方式解决,在“AndroidManifest.xml”中配置的自定义Application,添加默认构造函数:
1)AndroidManifest.xml中的Application配置:
<application android:name=".MyApplication" android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme"> |
2)MyApplication中添加默认构造函数:
public MyApplication() { super(); } |
这篇关于Didn't find class com.android.tools.fd.runtime.BootstrapApplication的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!