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

How to get around :app:validateSigningDebug?

I took a opensource android project from github and wanted to work on it. When ever I try to run the app, I get the following error. Error:Execution failed for task ':app:validateSigningDebug'. > Keystore file…
krishna
  • 405
  • 6
  • 25
3
votes
1 answer

It's showing error while building signed apk

When I am building apk it's not showing any error but while generating signed apk it's showing following error in logcat. Error: Warning:org.junit.internal.runners.statements.FailOnTimeout: can't find referenced class…
Srinivas Nahak
  • 1,846
  • 4
  • 20
  • 45
3
votes
2 answers

Generate signed apk without typing key

First of all here goes my signinConfigs: signingConfigs { development { storeFile file("mykey.jks") //Path to the keystore file keyAlias "mykey" storePassword "mykeydev" keyPassword "mykeydev" …
guisantogui
  • 4,017
  • 9
  • 49
  • 93
3
votes
2 answers

\intermediates\proguard-rules\release\aapt_rules.txt (The system cannot find the path specified)

android { compileSdkVersion 25 buildToolsVersion "25.0.3" defaultConfig { applicationId "com.****" minSdkVersion 21 targetSdkVersion 25 versionCode 30 versionName "1.0" multiDexEnabled…
user6693721
3
votes
2 answers

react native generate signed apk error

I'm trying to generate a signed apk for my react-native app. I'm getting this error: Execution failed for task ':app:validateSigningRelease'. Keystore file not set for signing config release when running sudo ./gradlew assembleRelease (i have to…
BeniaminoBaggins
  • 11,202
  • 41
  • 152
  • 287
3
votes
1 answer

Generate Released apk using keystore in teamcity Android

I am exploring Android app in teamcity.I have already install teamcity plugins in android studio.its working fine.but i want to generate signed apk using teamcity tool. can anyone help me Which build step included to generate signed apk? Thanks in…
dipali
  • 10,966
  • 5
  • 25
  • 51
2
votes
2 answers

ClassCastException while building signed Apk

My gradle dependency is repositories { google() mavenCentral() // maven { url "http://maven.ghostscript.com" } maven { url 'https://jitpack.io' } jcenter() } dependencies { classpath…
Asif Mehmood
  • 141
  • 1
  • 14
2
votes
2 answers

My Android local database doesn't work when I make a signed APK

Problem: Android local database doesn't work when I make a signed APK. More Info: I tried to use the room database, it failed. I then tried Sugar ORM, still, it failed. Everything works perfectly in debug mode until I make a signed APK. It cannot…
MUHINDO
  • 788
  • 6
  • 10
2
votes
2 answers

Error: ENOENT: no such file or directory, open 'android\app\src\main\assets\index.android.bundle'

I created react-native init project then I run the project using react-native run-android it will run without any issues. When i try to build apk using below comment react-native bundle --platform android --dev false --entry-file index.js…
2
votes
2 answers

FCM push notification receiving in Signed APK but not in debug

FCM push is working fine in Signed APK but when I am using the same server key and JSON in the debug version, the FCM is showing mismatch sender id. I have already added the SHA 1 in the firebase console and also tried with the legacy key but still…
MarGin
  • 2,078
  • 1
  • 17
  • 28
2
votes
0 answers

FCM notifications not receiving in app downloaded from playstore but debug version works normally?

I recently published by app in play store. It was not receiving fcm push notification (provided I'm using default channel in fcm console) but receiving fcm test notification to the same device. The debug version of the app was receiving fcm…
2
votes
0 answers

Question about signed release flutter app with firebase

I know the question is rather trivial and stupid, but I really need a solid confirmation. The only things that matter for firebase + flutter are: SHA-1, google-services.json file, application ID and dependencies? Suppose I added a debug and signed…
HPressure
  • 187
  • 3
  • 13
2
votes
2 answers

"App not installed" trying to install signed-apk

I'm facing with App not installed error on different devices - some I have not even installed debug apk before! -So it's not same package name-. I'm able to install the apk by changing the alias of generated key, but the apk only install once and…
2
votes
2 answers

generating signed apk cannot find common super class

I am trying to build a signed apk for my app but am getting this error whenever I try to build it: Can't find common super class of [com/google/android/gms/internal/zzata] (with 1 known super classes) and [java/lang/String] (with 2 known super…
Charlie Ansell
  • 451
  • 1
  • 7
  • 22
2
votes
0 answers

Signed apk shows a black screen, while debug version shows just fine

Working with debug build variant, my app works just fine. However, when I sign the app and install it, it starts with a black screen. This is what I have in build.gradle: buildTypes { release { minifyEnabled true debuggable…
moyo
  • 1,312
  • 1
  • 13
  • 29
1 2
3
12 13