INSTALL_FAILED_MISSING_SHARED_LIBRARY 报错解决
我在虚拟机上运行就没问题,但到了真机上就出现了这个错误之前看到一个文章,看到可以解决,但我这里好像没有完全成功,各位可以先去尝试他的方法(https://blog.csdn.net/u010802275/article/details/103578298)我androidManifest.xml原本是长这样的<applicationandroid:allowBackup="true"andr
·
我在虚拟机上运行就没问题,但到了真机上就出现了这个错误
之前看到一个文章,看到可以解决,但我这里好像没有完全成功,各位可以先去尝试他的方法
(https://blog.csdn.net/u010802275/article/details/103578298)
我androidManifest.xml原本是长这样的
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@android:style/Theme.DeviceDefault">
<uses-library
android:name="com.google.android.wearable"
android:required="true" />
我原本的包是com.google.android.wearable,
然后我将原本的包,改成了自己引入的包com.xxx.wearable",然后将true改成了false
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@android:style/Theme.DeviceDefault">
<uses-library
android:name="com.xxx.wearable"
android:required="false" />
然后我就成了,我也不知道为啥,大概是找不到包之类的
更多推荐
已为社区贡献1条内容
所有评论(0)