it was trying to build a newer version of a watchface. Android Studio upgraded to Version 2.2. Since that, I have the problem, that the handheld-APK doesn't seem to have the wear-APK inside. If I install it via the play store (as a beta-release), I can see the app, which is for configuration, but the watchface is not pushed to the watch. If I build the wear-APK alone, it is about 3 MB, the handheld one about 3.2 MB. I googled a lot but only found one similar article here, but without a solution, only that it might be a bug in AS. My watchface doesn't have a Activity, as I only use the service. Can anyone help? Thanks!
This is what is in the wear-manifest:
<uses-feature android:name="android.hardware.type.watch" />
<uses-permission android:name="com.google.android.permission.PROVIDE_BACKGROUND" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
and this in the mobile-manifest:
<uses-permission android:name="com.google.android.permission.PROVIDE_BACKGROUND" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.INTERNET" />