I have a problem trying to add GCM to my application when the package name starts with a capital letter.
The problem is the code:
<permission android:name="Myapplication.com.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
When you try to install it in the emulator, the output will be as follows:
install_parse_failed_manifest_malformed
If you are starting a new application, you can decide how to change the package name from “Myapplication.com” to “myapplication.com” (small letters), but if you are updating an existing application, you cannot do this because Google Play does not Allows package name changes during upgrade.
Yxer source
share