android-signing

Add SHA-1 from production certificate for GCM/FCM

ε祈祈猫儿з 提交于 2020-01-04 07:35:08
问题 I have an app that is using FCM. I've added package to the FCM and it said "Debug signing certificate SHA-1 (optional)", so everything works as expected. Now I'm preparing it for the release and wonder do I need to change this SHA-1 certificate to value from the release certificate or it's not required and for release I should leave everything as it is? 回答1: Yes, you must add SHA-1 of release certificate. you can add SHA-from settings button and then add fingerprint: you can have both SHA-1

Google maps does not work after resigning an apk

醉酒当歌 提交于 2019-12-24 12:22:09
问题 I am doing some modification in an existing apk that i got from my client to modify. I have decompiled application using apktool, changed some resources (like some strings from strings.xml ) and recompiled/built it again using same tool. Then I signed using one_click_signer tool that I found somewhere of the google. But when I install it on my device then google maps does not work anymore as it was working with original apk on the same device. I have searched a lot about this but did not got

Android Studio keystore not found

一世执手 提交于 2019-12-11 07:59:08
问题 I have an Android project published on google play, signed with my previous installation of Windows and Android studio. Due to formatting the PC (the computer is the same), I lost the .jks file to sign the application. If I have the key store password with which to sign this app. Can I re-sign the app with the same keys as before? Can anyone tell me how to fix this? I would like to update the app, instead of having to issue a new one. UPDATE: I have copy to keys ssh 回答1: I was trying to

AOSP building: replace my own keys with default test-keys

假装没事ソ 提交于 2019-12-11 06:26:10
问题 I am building AOSP and I want to sign the build with my own key. There is some official doc about this process here. But I wonder if I can simply turn around all of that process and instead do this things: Delete default android test-keys which are located at build/target/product/security put my keys (which are generated using official instructions at here) in that folder with same names. (Assume one key for all of shared,media,...) But this approach does not work. After burning the image,

How to sign AAR Artifacts in Android?

南笙酒味 提交于 2019-12-09 12:42:36
问题 I'm currently developing a .AAR android library and I would like to sign the released artifacts with my own key, so that I can determine if a fake aar with the same name and functionality has been released by mine or not. Notice 1 : I want to be able to check the authenticity of my library programmatically, even if a fakely-cooked one, is forging just part of the functionality of my aar file. Notice 2 : I am not going to publish this aar into maven, sonatype or any other public repository. So

How to fix App not installed error in Android

♀尐吖头ヾ 提交于 2019-12-08 00:37:18
问题 I develop android application and when create APk from this application (with Generate Signed APK ) and when install this apk in other devices not install and show me this error on phone : App not installed how can i fix it? 回答1: This is usually caused when you have a debug apk that is signed with a different certificate and you are trying to install a release version with a different certificate. If you have a debug apk on the device try uninstalling it and try again. 回答2: For me, *

How to sign AAR Artifacts in Android?

六月ゝ 毕业季﹏ 提交于 2019-12-03 14:37:10
I'm currently developing a .AAR android library and I would like to sign the released artifacts with my own key, so that I can determine if a fake aar with the same name and functionality has been released by mine or not. Notice 1 : I want to be able to check the authenticity of my library programmatically, even if a fakely-cooked one, is forging just part of the functionality of my aar file. Notice 2 : I am not going to publish this aar into maven, sonatype or any other public repository. So I'm going to sign it for a typical release flow like signing an apk file. You can use jarsigner to

Android Error Building Signed APK: keystore.jks not found for signing config 'externalOverride'

廉价感情. 提交于 2019-11-29 02:01:07
问题 I get this error when I try to Build Signed APK. I recently upgraded to API 23 but Generated APK:s successfully after that. Im confused. Asking for help and advise how to solve this problem. Here's the error FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':app:validateExternalOverrideSigning'. > Keystore file /Users/me/Desktop/final apps/keystore.jks not found for signing config 'externalOverride'. * Try: Run with --stacktrace option to get the stack

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

How to enable Google Play App Signing

橙三吉。 提交于 2019-11-26 02:27:26
问题 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