I\'m writing a custom Android Wear application that\'s supposed to fire a one-off message to the connected host device (the phone). Digging through the API, I found the foll
The usual suspects are:
In the basic case, the following parts should be identical, in the gradle configurations of both apps.
defaultConfig {
applicationId = "com.your.domain"
}
signingConfigs {
debug {
storeFile file("../debug.keystore")
}
release {
storeFile file("../release.keystore")
}
}
Both apps need to use the same applicationId and be signed with the same certificate.