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

Protect APK from resigning with different keystore

I have just decompile my signed apk using apkTool and resigned new apk with different keystore using the same decomplied class folder. And then tried to install and override the older apk with new apk in my device and it is working fine. But now I…
Maradiya Krupa
  • 213
  • 1
  • 6
1
vote
3 answers

Playstore: Couldn't upload, try again

I'm trying to upload an app to Google Play-Store but I'm getting the error message below without any further comments: Couldn't upload. Try again. I have uploaded numerous apps to Play-Store in the past. I'm not exactly sure why this one isn't…
Taslim Oseni
  • 6,086
  • 10
  • 44
  • 69
1
vote
1 answer

How to test a built android application from github on a device?

I have cloned from github and made some changes in K-9 Mail application. I was able to succeffully build a signed apk, but I can't test it on my device, because the installation is blocked by Play Protect. How can I deal with it? How can I test…
frifix
  • 11
  • 1
1
vote
0 answers

unable to generate APK file react-native Error: EEXIST: file already exists, mkdir 'D:\native'

error screenshot Hello world, I am newbie to react native and facing difficulty to generate apk file for my project. getting a strange error when running command "gradlew bundleRelease" the process starts but after 2 minutes it generates a file in…
1
vote
0 answers

Google Developper API doesn't work with Android Signed APK

I'm coding an Android native application that contains subscriptions purchases. I have a problem with the Purchases.subscriptions: get service of the Google Play Developer API. Here's my code : TokenResponse tokenResponse = new…
Franck DM
  • 11
  • 2
1
vote
1 answer

Can I upload the app bundle .aab file as an update of .apk (app signed APK) file?

Hello All, I have gone through the android blog and found that there is two ways for creating the APK file in android: 1. Android App Bundle (.aab) 2. Signed Apk (.apk). I have gone through the details and found that the size of both the files are…
Rishabh Mahatha
  • 1,251
  • 9
  • 19
1
vote
1 answer

Convert currently released android app to flutter build

I currently have an Android app which I'm going to rebuild in flutter. (I would really like to just start with a clean slate in the code base, but don't want to loose installs/current backend Google play subscription integration already set up and…
1
vote
1 answer

NoSuchMethodError in release apk when proguard is enabled

This error comes only in signed/released apk and proguard is enable( minifyEnabled true ). Error logcat redirects me to this line: if (jsonArrayUserDetails.length() > 0) { } Error: E: FATAL EXCEPTION: main Process: com.my.project, PID: 4713 …
1
vote
2 answers

Which is a good practice to upload an APK on playstore? Is it better to use a Signed APK or Bundle

Currently I have 2 apks (64bit and 32bit) to upload on playstore. So I would like to know which method is better for doing upload-APK or Bundle.
varsha jeevan
  • 49
  • 1
  • 11
1
vote
1 answer

Process 'command 'node'' finished with non-zero exit value 1 linux whien generating signed apk

Process 'command 'node'' finished with non-zero exit value 1 In Android Studio 3.4 using Ubuntu 16.04 when i generating Signed APK this error is coming . But when i am generating debug apk it is ok. I have tried many solutions from SO itself,i…
Kartik Shah
  • 866
  • 5
  • 19
1
vote
1 answer

Android Studio 3.3 Signed APK Option Missing

I'm trying to publish my Ionic 4 app into Play Store through Android Studio and the option to build to a signed APK is missing. I know there are similar questions to mine already asked here, but their answers are directed for previous versions. I…
Tech Fan
  • 11
  • 2
1
vote
0 answers

FileNotFound Error for old keystore when trying to sign APK

I go to build>generated signed bundle/apk and input all the information for my keystore. However I get an error caused by java.io.FileNotFoundException for a different keystore that I'm not currently using. How can I fix this?
1
vote
1 answer

React Native Signed Apk Crashes Immediately

I have a React Native project that works successfully on Emulator. I also install the debug APK to my android phone and it works as expected. But when I create this apk as a signed-apk, It crashes immediately with the xxx Application…
doganilker
  • 103
  • 2
  • 16
1
vote
3 answers

Signed release version apk file location in New Android Studio 3.1.4

Currrently i am using android 3.1.4 and when i try to generate signed apk using Build->Generate signed apk the apk file stores in /app/release/app-release.apk And i also configured the build process to automatically sign your APK using Open…
cool
  • 59
  • 2
  • 9
1
vote
1 answer

App not working while generating signed apk and installing in real device

I made an app and tested everything. I was working fine in emulators and in USB-connected devices but did not work when generating signed apk file. I have made the app with both disabled/enabled instant run and it still didn't work. I also tried…
karthik
  • 528
  • 4
  • 19