1
C:\Users\.android\avd\Pixel_API_22.avd 首先找到你的模拟的起的位置
所以你上锁的话 会多出来一个文件夹 删除即可
2
你运行程序报错了。 怎么办。 还没有日志。 挠头了吧
implements Thread.UncaughtExceptionHandler 让你的程序集成这个
然后把日志打印出来
@Override
public void uncaughtException(Thread thread, Throwable throwable) {
Log.i("什么错误", "uncaughtException " + throwable);
}
3 当你引用第三方jar的时候 运行的时候报
Error:Execution failed for task ':app:transformClassesWithDexForDebug'.
com.android.build.api.transform.TransformException: com.android.ide.common.process.ProcessException: java.util.concurrent.ExecutionException: com.android.dex.DexException: Multiple dex files define Lcom/tencent/stat/EasyActivity;
解决方法
Paste_Image.pngmultiDexEnabled true
网友评论