美文网首页Android
Android在debug安装运行时安装失败

Android在debug安装运行时安装失败

作者: 小妖sc | 来源:发表于2020-04-09 11:58 被阅读0次

    编译环境:Android Studio 3.0 

    问题:最近在一些国产手机上跑

    debug包时,会出现安装包异常的情况(OPPO PBFM00)

    分析:这个问题出现主要是由于在debug模式下面的 AndroidManifest.xml 中 Application 标签里自动添加 android:testOnly="true" 属性

    解决方案:

    1. 使用gradle打出debug包,然后使用 adb install -t <apk> 来安装

    2.在项目根目录 gradle.properties 里增加:android.injected.testOnly=false

    相关文章

      网友评论

        本文标题:Android在debug安装运行时安装失败

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