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
1
vote
1 answer

Issue while generating Signed APK

Facing AAPT2 error: check logs for details issue while generating Signed APK. Normally when taking build it give successful apk, while generating Signed APk it blocks. And the error file is placed below for further information
IamVariable
  • 408
  • 6
  • 23
1
vote
1 answer

My ratingbar does not show up after generating signed apk

I have a rating bar class as follow. class Rating extends FieldAndroid { @Override public String register() { return register("rating"); } @Override protected Object createControl() { LinearLayout layout = new LinearLayout(getContext()); …
Sparks Sh
  • 109
  • 1
  • 12
1
vote
0 answers

Issue on Generating signed apk in Android Studio

I want to generate signed apk in android studio of my project but It is giving me error.I am new to android, please help me in this. Unable to find out whether the issue is with progaurd or build.gradle. Added my logs in the below section, please…
1
vote
2 answers

How do I find out if my current build is signed?

I want to perform a code operation only under the assumption that the current build is a signed APK. Is there a way to programmatically find out?
Cookienator
  • 637
  • 1
  • 7
  • 25
1
vote
0 answers

how to release the apk for ionic2 app?

I am new to ionic2 platform. I created one ionic2 app in android studio. Now I want to generate apk for publish the app in play store. I have knowledge on android apps in android studio. But when I created ionic2 app in android studio it was not…
kartheeki j
  • 2,206
  • 5
  • 27
  • 51
1
vote
2 answers

Execution failed for task ':app:transformClassesAndResourcesWithProguardForProductionRelease'

I am trying to generate signed apk but unfortunately receiving below error. Error:Execution failed for task ':app:transformClassesAndResourcesWithProguardForProductionRelease'. > Job failed, see logs for details Full log wih…
VVB
  • 7,363
  • 7
  • 49
  • 83
1
vote
1 answer

resValue under buildTypes produces No resource found that matches the given name

This is my build.gradle buildTypes { debug { resValue "string", "facebook_app_id", "\"XXXXXXXXX\"" } live{ resValue "string", "facebook_app_id", "\"XXXXXXXXX\"" } } and this my manifest file…
Abanoub Samaan
  • 226
  • 1
  • 5
  • 11
1
vote
1 answer

Android Studio Signed APK App not installing

I know there are other questions similar to this but I havent found a solution to my problem. Ive made sure that no previous installation of the app was already on my phone (testing on a galaxy s6), in Android Studio in the Build Variants tab I've…
fourthking
  • 321
  • 1
  • 4
  • 19
1
vote
1 answer

getting a nullpointerexception in the signed apk with unknown source

I am getting this exception opening a Fragment in the MainActivity only in the signed apk and not in the debug version. FATAL EXCEPTION: main Process: com.curieo.podcast, PID: 15376 Theme: themes:{} java.lang.NullPointerException: Attempt to…
Saransh Agarwal
  • 305
  • 5
  • 18
1
vote
0 answers

AndroidStudio - generate signed apk flavors with different keys each

My build gradle: signingConfigs { general { keyAlias 'key' keyPassword '123abc' storeFile file('../store.jks') storePassword '123abc' } lomza { keyAlias 'key2' …
user1209216
  • 7,404
  • 12
  • 60
  • 123
1
vote
1 answer

Why can I see server response in my signed apk android?

I generated a signed apk using a .jks file for release. It got uploaded on playstore for beta testing also. But if I use the app with my andorid-studio I can see the server responses in my log-cat which should not be the case as far as I know. When…
The Bat
  • 1,085
  • 1
  • 13
  • 31
1
vote
1 answer

Running app from Android Studio and installing by apk yields different results

I have created an app which runs perfectly when I run it from Android Studio. It works on an emulator and on a connected physical device as well. However, when I create a signed apk, all I get is an empty gray screen. Here is my app in github:…
handris
  • 1,999
  • 8
  • 27
  • 41
1
vote
1 answer

Error:Execution failed for task ':app:validateSigningRelease'

I am new to android and I can't generate signed apk. I can't run my project because it says first generate signed apk. I tried invalidate caches and restart. It gives me this error : Error:Execution failed for task ':app:validateSigningRelease'. >…
PRIYA BHALARA
  • 11
  • 1
  • 2
1
vote
0 answers

android - signature version is not in android studio

I want to get signed version of my android app but there is no Signature versions in the wizard. what is going on? how can I achieve that? I do not have those below my android studio is like that
faeze saghafi
  • 650
  • 10
  • 25
1
vote
0 answers

Can't open file APK issue

I have generated signed apk (android studio 2.3) and uploaded in site.I have successfully download but unable to open it from downloads app in device. I'm able to install from third party file explorer. This is weird behavior as im doing this from…