android-app-signing

How to disable App Signing from Google Play Console

烂漫一生 提交于 2019-12-18 03:56:24
问题 How can I disable App Signing from Google Play Console for all the apps already uploaded on Play store and for new apps? 回答1: You can't disable App Signing after being activated as you can read in the image below: Took from official documentation. If you are stucked with it, you can follow the guide i posted here 回答2: Quoting the @MatPag you can't disable the app signing after activating it from Google Play Console. Here is the quick way to resolve this issue. "CREATE APPLICATION" having the

Signing an APK with an upload key provided by Google Play

微笑、不失礼 提交于 2019-12-17 08:16:06
问题 I'm trying to make sense of how to upload an app onto Google Play while using Google Play App Signing. Here is what I did: Created an app Used keytool.exe to generate a key for that app Uploaded the app to Google Play Enrolled in the Google Play App Signing Try to upload the app again without success. It complains that the certificate is not the certificate Upload new APK to Production Upload failed You uploaded an APK that is not signed with the upload certificate. You must use the same

Test Google Play Games on app signed with upload key

本秂侑毒 提交于 2019-12-06 02:54:50
I am trying to test the functionality of google play games on the app I am currently building with Unity. I have opted for the Google's app signing and have access to only the upload Keystore. Is there a way to connect to google play games with a version of the app signed by the upload key so that I don't have to deploy my app everytime I want to test it? Though it's not the ideal workflow, you can upload an APK (signed with your upload key) to an internal or closed test track, and then download the Google re-signed APK when it's available from the test track. Unfortunately, even test track

Use provided upload_cert.der to sign a release Android APK file

五迷三道 提交于 2019-12-05 16:08:43
I've just enrolled in the Google Play App Signing program, which required uploading an encrypted version of the release keystore and had an "optional" step for creating an upload keystore - optional is in quotes, because I think it should be a required step, but anyway, after a successful enrollment, I'm now left with an Upload certificate , which I should somehow use to sign my future app releases. What I've done so far: I created a new keystore from Android Studio, set the store and alias passwords and tried to import the upload_cert.der to the existing alias - failed: keytool -importcert

Sharing android debug certificate across different developer machines in Android Studio

橙三吉。 提交于 2019-12-05 11:13:04
As Android debug builds get reinstalled when the same phone is connected to different MacBooks, is there any way for all development machines (MacBooks) to share the same debug certificate? It will help to avoid reinstallation on development devices. mick88 Easiest thing to do this would be to check the debug keystore into your project and then reference it in build.gradle like so: signingConfigs { debug { storeFile file('../keystore/debug.keystore') storePassword "android" keyAlias "androiddebugkey" keyPassword "android" } release { // ... } } I think that's possible. Android Studio

Getting “The AndroidManifest.xml of the uploaded APK could not be parsed. Was it compiled properly?” error after enabling Google App Signing

百般思念 提交于 2019-12-04 03:32:19
After enabling Google App Signing , everytime I try to upload a signed release APK to Play Store I get an error saying The AndroidManifest.xml of the uploaded APK could not be parsed. Was it compiled properly? . Here is the Android Manifest file got from the signed APK with the APK Analyzer tool <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="227" android:versionName="4.9" package="com.myproject"> <uses-sdk android:minSdkVersion="15" android:targetSdkVersion="25" /> <uses-permission android:name="com.google

How to disable App Signing from Google Play Console

流过昼夜 提交于 2019-11-30 11:27:55
How can I disable App Signing from Google Play Console for all the apps already uploaded on Play store and for new apps? You can't disable App Signing after being activated as you can read in the image below: Took from official documentation . If you are stucked with it, you can follow the guide i posted here Quoting the @MatPag you can't disable the app signing after activating it from Google Play Console. Here is the quick way to resolve this issue. "CREATE APPLICATION" having the same name which you want to upload before. Click create. After creation of the app now click on the "App

Signing an APK with an upload key provided by Google Play

我只是一个虾纸丫 提交于 2019-11-27 06:29:59
I'm trying to make sense of how to upload an app onto Google Play while using Google Play App Signing. Here is what I did: Created an app Used keytool.exe to generate a key for that app Uploaded the app to Google Play Enrolled in the Google Play App Signing Try to upload the app again without success. It complains that the certificate is not the certificate Upload new APK to Production Upload failed You uploaded an APK that is not signed with the upload certificate. You must use the same certificate. The upload certificate has fingerprint: [ SHA1: 0C:... ] and the certificate used to sign the

Testing Games Services using upload key instead of Google Play App signing key

帅比萌擦擦* 提交于 2019-11-26 23:41:56
问题 I currently have GPGS set up and working for my app. I'm having problems with some features while debugging my app using my upload key. I followed the steps here: https://stackoverflow.com/a/45270329/5434860 and am able to sign into Google while using the app signed with the secure "app signing key" that Google keeps on a secure server and am able to sign in using the app signed with my "upload key". (I have two OAuth 2.0 client IDs in there. One for production and one for debugging) My

How to enable Google Play App Signing

╄→гoц情女王★ 提交于 2019-11-26 12:02:23
I think a lot of developers are trying to learn more about the new Google Play App Signing feature presented at Google I/O 2017. The ability to store the keystore to sign the apps inside Google Play save you the effort to safely store the keystore and can help the system to optimize the APKs served to every device, based on hardware and OS characteristics. You can read more about this topic in the official documentation here : https://developer.android.com/studio/publish/app-signing.html#google-play-app-signing . With the following answer, i will explain a bit better the steps you need to