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
2
votes
1 answer

Generating Signed APK with no key store password

I got a half completed project 7 months ago that was made with Android Studio and they had also generated a singed APK and put it on the Google Play Store. Now that I have finally finished the project I would like to place it on the Google Play…
Richard
  • 1,087
  • 18
  • 52
2
votes
0 answers

Android Swagger client with Proguard

I have generated Android swagger generation code and implemented into my Android Project. Its working fine in Debug mode, but when generated signed APK, API's are not working. Do I need to add in Proguard file to correct signed APK.
2
votes
3 answers

Android Studio showing error like "Expected a name but was STRING at line 1 column 99 path $[0].apkInfo.versionName" while generating signed apk

I am trying to generate signed apk of my application but this is showing error Expected a name but was STRING at line 1 column 99 path $[0].apkInfo.versionName Project Level gradle is: buildscript { repositories { jcenter() …
Kisan Thapa
  • 527
  • 1
  • 4
  • 15
2
votes
2 answers

New android project: Generate signed apk with existing keystore

I have finish the first version of an application, now I need to signed my apk and upload it to the PlayStore. As Google say I want to use one keystore that I have (an old "keystore.jks" used in another apps), with different alias, alias password…
Pablo Jimenez
  • 21
  • 1
  • 4
2
votes
1 answer

Can't generate signed APk

This is my Proguard File: -dontoptimize -dontusemixedcaseclassnames -dontskipnonpubliclibraryclasses -dontskipnonpubliclibraryclassmembers -dontpreverify -verbose -optimizations !code/simplification/arithmetic,!field/*,!class/merging/* …
j.anish
  • 21
  • 2
2
votes
1 answer

Can't generate signed apk but it works fine

I can run the app and I can use it, but I can't generate signed apk. Here is the log and debug apk is running on some devices only. Error:Execution failed for task …
6155031
  • 4,171
  • 6
  • 27
  • 56
2
votes
0 answers

Error while generating signed apk Android

Errors occurs while generating signed apk. Works fine when generate debbugable apk. Android studio version 2.3. I added following code in gradle file but its not working. packagingOptions { exclude 'META-INF/LICENSE.txt' exclude…
2
votes
1 answer

'keytool' is not recognized as an internal or external command

I've created a small Android application using Ionic and I was going to build the signed apk to test the app. When I typed 'keytool' command in my command prompt I'm getting this error 'keytool' is not recognized as an internal or external…
Thidasa Pankaja
  • 930
  • 8
  • 25
  • 44
2
votes
1 answer

Signed apk is changing post parameters name

I have my APP and c# web api which the app calls using retrofit2. I'm facing a problem while making a post call to the api, the parameter names in the call are changing to "a" and "b" instead of there actual…
2
votes
3 answers

Unsigned apk vs signed apk Google Map not showing

I have done an Android app which takes the data from a server database. If I install it from an USB installation or installing an unsigned apk everything works properly but, if I install it from a signed apk (or downloading it from PlayStore) the…
Aldeguer
  • 821
  • 9
  • 32
2
votes
1 answer

Asynctask executes properly in debug version, but fails to update UI in release version (signed apk)

I am using an Asynctask to do some processing, after which a UI List is updated with the remaining/ additional items (addition or deletion case). The functionality works properly in the debug apk that I work on in Android Studio. However, it is not…
SoulRayder
  • 5,072
  • 6
  • 47
  • 93
2
votes
1 answer

403 Forbidden error while fetching courses list for Google Classroom

I have integrated Google Classroom Api's in my android application and every thing was working fine for last couple of months but now I am start getting below error every time I am trying to fetch courses list from classroom Error: 403 Forbidden { …
2
votes
3 answers

Failed to generating Signed apk from Android Studio

while generating signed apk from android studio getting error. Few days later all works good, while from last 2 days I am facing problem to generate signed apk. Error is - FAILURE: Build failed with an exception. What went wrong: A problem was…
user6303614
2
votes
1 answer

Is it possible to change the apk before pressing Go Live option in Google Play Console

I have enabled timed publishing option in google play console and updated a apk yesterday,Now Google play console is enabled with Go Live option for that apk.Here my problem is i want to change the apk with another updated apk and with the same…
2
votes
1 answer

Generated signed Android APK (Cordova)

I am trying to build a signed apk for Android platform using cordova. I have already created unsigned apk using cordova --release android. But i am unable to sign usejarsigner and zipalign. kindly help.
Apurva Pathak
  • 692
  • 1
  • 9
  • 22