Questions tagged [flutter-apk]

44 questions
6
votes
2 answers

Flutter release apk is not installing on device

I have release apk with signed keys but it's not installing on android devices, its shows this message "The apk failed to install Error: Could not parse error string" but debugging mode apk, the app works fine. release command flutter build apk…
Asfos22
  • 321
  • 2
  • 5
  • 14
5
votes
1 answer

How to build flutter-debug.apk

I am a beginner and I need some help. I want to generate a flutter apk of debug mode. When I run 'flutter build apk' it only generates the flutter-release.apk file but I want to generate flutter-debug.apk of the latest code. Any kind of help is much…
Adil Naseem
  • 1,007
  • 2
  • 8
  • 18
5
votes
2 answers

What is the difference between app-arm64-v8a-release.apk,app-armeabi-v7a-release.apk and app-x86_64-release.apk in flutter?

I generated apk for my flutter project and in the F:\build\app\outputs\apk\release I got 3 types of apk files including output.json file. They…
5
votes
3 answers

How to `flutter run` with target device as android?

I have my flutter app built and running on macOS using the following command. flutter run This is great. Now, I want to run my app on an Android device. It has developer mode enabled and getting recognised when I run adb devices. I have also run…
TheWaterProgrammer
  • 7,055
  • 12
  • 70
  • 159
2
votes
2 answers

Can't move slider for camera zoom - Flutter

I am trying to move slider for zoom in flutter camera. I tried many things but I could not get solution. I am attaching my code with screenshot. Please give right suggestion. double _minAvailableZoom = 2.0; double _maxAvailableZoom = 2.0; …
Parth Patel
  • 105
  • 1
  • 8
2
votes
2 answers

Want to show deleted items in Bin - Flutter

I want to add deleted items in Bin where I can restore or delete permanently. I used things which is listed below. However, I want to add deleted data in deletedList. So, How Can I? So, please help me. List deletedList = []; void delete() { …
Parth Patel
  • 105
  • 1
  • 8
2
votes
1 answer

Task 'assembleAarRelease' not found in root project 'connectivity'

[ ] FAILURE: Build failed with an exception. * What went wrong: Task 'assembleAarRelease' not found in root project 'connectivity'. * Try: Run gradlew tasks to get a list of available tasks. Run with…
1
vote
1 answer

Flutter UI is ruined after building and running the app on a physical device

I'm facing an issue with my Flutter project where the UI appears perfectly fine when running the code in the emulator. However, after building the app using the command flutter build apk and installing it on my physical device, the UI becomes…
1
vote
1 answer

I Have Issue with Flutter Apk

When I run my Flutter app in debug mode, it works fine. However, when I build the release version and try to install the APK, a warning dialog appears, which is not seen with other APKs from different projects. There are also cases where I see a…
1
vote
2 answers

How to interact flutter apk with PostgreSQL and external website?

I created flutter app, it is using PostgreSQL as DB and opening external websites for product related info. This is working as expected in emulator. Created apk file with the command flutter build apk --build-name 1.0 --build-number 1 and installed…
anilraj
  • 53
  • 7
1
vote
0 answers

Flutter release APK is different compared to the debug APK when analyzed

In this flutter app i have a java library that uses a json file and a certificate inside the android/app/src/res/raw directory. But when i'am running the app in Release mode it failed to find those json and certificate files. And when i analyze both…
1
vote
1 answer

Couldn't infer type parameter 'T'. (Dropdown) in flutter

Hello Flutter Development Experts, I want to make DropdownButton widget to show given items, but I am facing an error ehich is below descrived. I do not know the exact solution. I tried many things even searced on google but, did not get exact…
1
vote
0 answers

flutter app works on emulator but not in real device

My app works on emulator but if I build it with (flutter build apk) or (flutter build apk --split-per-abi --no-sound-null-safety) and setup it on my phone it doesnt responde. It is stucking in a white screen. I didn't get where is the problem. Where…
1
vote
1 answer

Failure to build apk and app bundle for my app project in flutter

I finally creating an apk/aab file for the app that i need to upload in google play console when suddenly it print an error "You uploaded an APK or Android App Bundle that was signed in debug mode. You need to sign your APK or Android App Bundle in…
1
vote
1 answer

Flutter Uploading Data through API

I am Uploading data through API in the backed but during the upload time i want that screen should freeze and person can't click on the same button until the previous data is stored. Is it possible in Flutter
1
2 3