how to maintain android package name for same code deployed on two different app engine instances -
There are two app engine examples that run the same code for our testing and production server. We are using the Endpoint API. The Android app that connects to both servers uses the same client code generated by the Google app engine tool. Based on our need, we will be able to use We have set the package name and sha 1 key to generate an Android client, but we have to do this on the production server due to the same package name. Are unable to. The error by saying that the package name should be unique. The problem now is how we maintain the code to connect to the app engine. In the worst case, there will be two separate projects with different package names. Any other solution? is the plugin for the Android client id (package_name, sha1_key_hash), whether you have the same key 1 key Use? If you can try using a different keystore? (You can generate one from Android Studio-> Build-> Signed APK-> New). Or can you reuse the same client ID? builder.setRootUrl (someUrl) on our test project;
Comments
Post a Comment