美文网首页
android 常见bug ~ lock ~ 模拟器有问题了上锁

android 常见bug ~ lock ~ 模拟器有问题了上锁

作者: 品味与回味 | 来源:发表于2017-07-18 17:51 被阅读29次

    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.png

    multiDexEnabled true

    相关文章

      网友评论

          本文标题:android 常见bug ~ lock ~ 模拟器有问题了上锁

          本文链接:https://www.haomeiwen.com/subject/nevhkxtx.html