Questions tagged [signed-apk]

The signed apk is simply the unsigned apk that has been signed via the JDK jarsigner tool.

An Android apk is just a zip file, so to see the difference between a signed and unsigned apk built from Eclipse, you just need to unzip the files and compare the contents.

182 questions
7
votes
1 answer

"C2D_message is not unique" while trying to make sign apk

I'm trying to release an APK and while I'm trying to Generate sign APK I get this error Error:Error: Permission name C2D_MESSAGE is not unique (appears in both com.company.myApp.permission.C2D_MESSAGE and com.company.myApp2.permission.C2D_MESSAGE)…
Amir Ebrahimi
  • 547
  • 1
  • 7
  • 22
6
votes
2 answers

keytool error: java.security.UnrecoverableKeyException: Cannot recover key android

I can't signed my apk with the existing keystore. Its giving me this error when signing: com.android.ide.common.signing.KeytoolException: Failed to read key Cannot recover key So, by following this link, I have tried to change the password but its…
0xAliHn
  • 18,390
  • 23
  • 91
  • 111
6
votes
3 answers

Keystore file exists but is empty?

I need the SHA 1 fingerprint from my RELEASE key and as I understand the key is generated when I select the option in Android Studio to build a signed release APK and then I get a Keystore.jks file.By following the google documentation I did this…
The Prophet
  • 147
  • 1
  • 4
  • 13
5
votes
2 answers

While generating signed APK, "androidx.legacy_legacy-support-core-utils.version collided" error occurs

While trying to generate signed APK it shows the following error message. Entry name 'META-INF/androidx.legacy_legacy-support-core-utils.version' collided Previously it was working correctly for couple of years. Additionally i have checked in…
Viswa Sundhar
  • 325
  • 2
  • 9
5
votes
2 answers

Generated APK is not signed if signature v2 is selected

I am trying to generate a signed APK for my app and it works if I only use signature V1. When I use signature V2 and then check apk with keytool, the output is: keytool -list -printcert -jarfile app-release.apk Not a signed jar file Here is the…
garrik
  • 63
  • 1
  • 7
5
votes
2 answers

React Native: Generating the Release Build APK error :app:mergeReleaseAssets FAILED

I am trying to create signed apk for a react native app. The debug app is working fine. I am following the react native guide for creating the signed APK. I have added the keystore to the app and set up the gradle variable, but unable to make signed…
Anurag Dhunna
  • 544
  • 1
  • 5
  • 17
4
votes
1 answer

Missing class java.lang.management.ManagementFactory when use the obfuscation method Generate Signed APK

When I use the obfuscation method Generate Signed APK (minifyEnabled true shrinkResources true), an error will be reported. The error message is as follows. But when it is not confused (minifyEnabled false shrinkResources false), it is…
lisa
  • 43
  • 3
4
votes
2 answers

admob ads are not working in signed apk,it worked perfect at debug version

admob ads are not working in signed apk,it worked perfect at debug version. in my first version of apk i shared my debug version in android with ads,now my app have more than 200 users,so i decided to publish it on play store but after i signed apk…
Tec Piranha
  • 51
  • 2
  • 10
4
votes
0 answers

Getting 2 errors while I try to build Signed APK of my React Native App

When I try to build a signed apk with Android Studio or from Terminal I get these error: Failed to capture fingerprint of input files for task ':app:bundleReleaseJsAndAssets' property '$1' during up-to-date check. Could not list contents of…
SmoggeR_js
  • 2,950
  • 4
  • 22
  • 52
4
votes
2 answers

Android studio does not Generate Signed APK

The Problem is that , I'm getting error while generating Signed APK using Allatori Java Obfuscator. I tried different hacks like, Invalidate and Clear cache /Restart,by deleting build folder, rebuilding project, Strings , Even tried comparing…
Atif AbbAsi
  • 5,633
  • 7
  • 26
  • 47
4
votes
1 answer

Unable to generate signed apk with proguard

I'm getting the following error when I'm trying to generate a signed apk with proguard enabled. Error:Uncaught translation error: com.android.dx.cf.code.SimException: com.android.dx.rop.cst.CstMethodRef cannot be cast to…
4
votes
2 answers

react native Generating Signed APK

I am trying to generate apk for releasing on Google play. I am following these steps https://facebook.github.io/react-native/docs/signed-apk-android.html Step 1) I ran this command $ keytool -genkey -v -keystore my-release-key.keystore -alias…
Abhishek Kumar
  • 2,136
  • 3
  • 24
  • 36
3
votes
1 answer

Signed APK crashes, unsigned not, when using Google Maps API v2

In my android app i use the Google Maps API v2 to show a map with markers on in. It works perfect with local debug and release versions. As soon as i build a signed APK the app crashes when a map should be shown. It crashes only if i authorize the…
3
votes
4 answers

Generate Signed APK isn't displayed in Android Studio

I am on Android Studio 3.6.3 and in order to publish my App to the Playstore, I need to generate a signed APK. As I learned in multiple consultations of the internet, there should be the option in the Menu->Build->generate signed APK. It is not…
David M.
  • 31
  • 1
  • 3
3
votes
1 answer

Impossible to signed android apk with Expo

I have created an application with Expo but I have some difficulties to upload it to Google Play because everytime the signed apk not corresponding to uploaded_certificate. First, I activated the app signing by Google Play with my keystore I…
fl0_9
  • 261
  • 3
  • 12
1
2
3
12 13