realme device app installing take a long time after uninstall in flutter - flutter

my android phone is realme. one time i delete flutter app, after that i was trying to reinstall that take very long time.(https://i.stack.imgur.com/eGMBW.png)

Go to file -> Open -> Select a android -> open in new
window -> connect your device and Run android project.
After that you try to Run your Flutter project.
open this image for result
https://i.stack.imgur.com/UgKGJ.png

Related

How do I install Flutter app on Android phone?

I couldn't install flutter app on my android phone. How can I do it? I can run by usb debugging However I want to install it on my phone. Can someone help me please?
If you use IntelliJ Idea (it should also work on Android Studio), you can go to
Build -> Flutter -> Build APK, (in the menu bar)
and after building, your apk will appear in
build/app/outputs/flutter-apk/app-release.apk,
just send the file to your phone and install, your phone will probably tell you not do download cause it isn't checked and secured or something, just ignore and install anyway
Connect your Android device to your computer with a USB cable.
Enter cd [project].
Run flutter install.
Source: here
You need to build the app to get the apk. For building apk use this command in console: flutter build apk and if you want to build your apk in smaller size then use this command in console: flutter build apk --split-per-abi.
After building apk you will find it in [project]\build\app\outputs\flutter-apk\app-armeabi-v7a-release.apk here.
If you don't want to build apk and just want to test your app you can run it in profile mode by using this command in console: flutter run --profile.
In android studio under the tools-> build -> build apk will create and app for you and you can get and the output location will show you after the builing the app

VSCode flutter how to launch Android Emulator instead of Chrome

All my old projects were able to launch debugging with Android Emulator. When I press F5, it will shows a list of installed Android Emulator for me to select for debugging.
But today, I have created a new project, and it launches debugging in Chrome instead.
First you'll need to check if the android platform has been initialized for the project. If you project has an android folder then it has been initialized, if you will need to create it with the following command: flutter create --platforms android .
To run the emulator, check the bottom right corner of the screen you should see the currently selected platform, if you click on the selected platform a pop up should appear allowing you to select from all supported platforms.
You can also you use quick-open (ctrl+p) and type in >flutter launch emulator, if no emulator is found it will provide you the option to create one as well.

Why Flutter App open in Chrome instead on Emulator?

Hi just clone one Application from github and run but app open in Chrome but i wanted it to open in Emulator .
You must open your emulator before run app on vscode
If you' re a VS Code user:
open your project
press F5
select your Emulator if you had one, if you didn't had one or your emulator doesn't show up, check online how to fix it . You can check this link: https://www.youtube.com/watch?v=pj99_CarIA4
If you're a Android Studio user: It will automatically run the emulator for you

not applicable for main.dart configuration flutter android studio emulator error

In the android studio, I have installed an emulator. However, I can't use it. I couldn't figure out the issue and I need ur help.
No selected device
No connected device error
flutter doctor output
project structure SDK directory
I can start the emulator, but I can not see my project there.
In the no selected device bar there is an icon with a small phone , click on it , you will get a list of emulators , select your's
I have this issue several time.
What fix this for me is to "Restart Flutter Daemon" (Double tap on shift in Android Studio then search for this action)

Flutter : No devices

I have been trying to run Flutter demo app for the first time in Android Studio.
I have installed up all settings for flutter in Android Studio and now I am trying to run the app in emulator but it keeps saying 'no devices' even though emulator is running.
I have tried
flutter doctor --android-licenses
flutter doctor
all set up variables in user setting
installed all sdk properly in proper pathenter image description here
It may be related with your Android emulator, you can try to create new one.(It is weird but solved my problem once)
and be sure about the device is active, In your console type adb devices and you should see your android emulator like following.
Go tools -> Avd manager -> then install an emulator if u didn't , then install a system image .
Documentation
https://developer.android.com/studio/run/managing-avds
you can drag debug apk file that you find in (Your App location)\build\app\outputs\apk\debug\app-debug.apk and put it on android emulator and it will install it and run it
It's a simple step to solve this. Just click on project Structure which you will find near Search icon on Android studio toolbar and before your profile icon, you will find project structure. Click on it and select Project SDK And press Ok. You will find that your device is now showing.