我在虚拟机上运行就没问题,但到了真机上就出现了这个错误
之前看到一个文章,看到可以解决,但我这里好像没有完全成功,各位可以先去尝试他的方法
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" />

然后我就成了,我也不知道为啥,大概是找不到包之类的

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐