googlearchive/android-WearVerifyRemoteApp

Getting "You are missing the required phone app, please click on the button below to install it on your phone." everytime

Closed this issue · 1 comments

In my project , on the wear I am checking if app in installed on the Phone or not. I have copied the MainWearActivity.java and wear.xml (phone) but always getting zero nodes. I am using the same package names in both. The only difference is that I am not doing any googleClientApi operations on the Phone's Main Activity. Is this example outdated?

I was able to resolve this issue by using the same debug key in wear and phone:

    signingConfigs {
        debug {
            storeFile file('keys/debug.keystore')
            storePassword 'android'
            keyAlias 'AndroidDebugKey'
            keyPassword 'android'
        }
    }