Questions tagged [release-apk]

18 questions
85
votes
16 answers

google signIn not working in release mode apk android

In release mode, my google sign-in is not working, but it works fine in debug mode. I got a similar question from SO here, but I didn't get perfect solutions. My handleSignInResult is coming false - How can this be fixed?
Elizabeth
  • 1,399
  • 1
  • 13
  • 25
48
votes
9 answers

Flutter build apk on release mode cannot generate updated version

I had run this flutter build apk to release my App. Now I had built version 2 of that. Now, I want to release my version 2 App. So, I run flutter build apk again. I get the released apk but It is still version 1 released apk. I deleted the released…
nitishk72
  • 1,616
  • 3
  • 12
  • 21
6
votes
1 answer

Android release crash with exception net.sqlcipher.database.SQLiteException

I've uploaded my app to play store but it still crashes as "crash report image" of developer console shows. on some devices the app did not lunch at all while on other it crashes when start sql query btw proguard is disabled crash report image the…
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
3
votes
1 answer

Youtube data API v3 not uploading video when created release apk

I am using youtube data API v3 to upload videos on youtube. It is working fine, but when we generate a signed apk with release mode. it is not uploading video and I receive null in videoId. Can anyone guess what can be the issue? I have…
Rahul Sharma
  • 5,949
  • 5
  • 36
  • 46
2
votes
2 answers

Flutter not rendering UI in real device on release apk

I have been writting ui for my app, it was ok while building in debug mode. But when I built release apk, UI getting smudged, and Text isn't shown. Widgets are being rendered not as expected and their size being rendered not correctly. I checked it…
Felix
  • 96
  • 8
1
vote
0 answers

Firebase Crashlytics not generating crash report for release APKs Android

After integrating Firebase Crashlytics in app, am not receiving the crash report in Firebase Crashlytics dashboard for release builds. For debug builds I am restricting to generate the report and only generating the report for release builds. App…
Menu
  • 677
  • 1
  • 12
  • 30
1
vote
1 answer

How can I integrate react-native-branch on React Native EXPO Managed Workflow and Bare Workflow project

I have created a React Native project using expo. And I am going to integrate react-native-branch for sharing referral codes with other users. But when I run the app on android, this error will caused: null of object ....…
AngelDev
  • 106
  • 1
  • 4
1
vote
0 answers

Flutter release apk is not rebuilding my widget correctly though debug apk works perfectly

I have a word game app in which I give the user a letter rack to type letters from. When the user types a letter, it goes into an array and that array is reflected into an answer rack on the screen (if the user selects the correct letters and makes…
0
votes
2 answers

Release apk build failed

I am trying to build release apk of a project, but getting following errors: debugging APK is running fine Multiple build operations failed. Could not create task ':flutter_plugin_android_lifecycle:generateDebugUnitTestConfig'. Could not…
0
votes
0 answers

youtube_player_flutter and cached_network_image is not working in release apk

I am using youtube_player_flutter and cached_network_image packages in flutter project they are working properly in debug mode but when i create apk using command flutter build apk and install it on the phone(android) it is not working and showing…
Munsif Ali
  • 1,839
  • 1
  • 8
  • 22
0
votes
0 answers

Removing rn_dev_preference XML file from React Native release APK decompiled source

Description we used the RN version 0.63.4 and somehow in the release build, we are getting rn_dev_preference XML in the build. we need to remove the file for some security issues. please suggest a way to remove the file from the release build. The…
0
votes
0 answers

Flutter jitsi meet not work on release apk

My flutter application does not work when building for android release (apk). I found a solution on the internet that says to try proguard, which i added to my build.gradle file. minifyEnabled true useProguard true proguardFiles…
Nutdanai
  • 33
  • 3
0
votes
0 answers

react native android release apk navigation error

const OnSignInPressed = async () => { const formData={email,password} const res = await loginUser(formData); // await storeToken(res.data.token) ConstantId.accessToken = res.data.token; …
0
votes
3 answers

Flutter apk file building taking huge time

I am using Android Studio to run Flutter. I have 8GB RAM, 256GB SSD. But whenever I am going to generate an apk file, it's taking an unlimited time. I have tried all possible command like: flutter build apk --release flutter build apk…
1
2