A new Flutter project.
This project is a starting point for a Flutter application.
A few resources to get you started if this is your first Flutter project:
For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.
Currently this project is an implementation of the tutorial from the flutter docs.
We can build an android APK for the application that can be downloaded and installed on android devices for offline use. The APK is the release version of the application, and can be found in the build/app/outputs/flutter-apk/app-release.apk
here.
$ flutter build apk
First we install the java sdk.
$ sudo apt install openjdk-11-jdk
Then we install android studio.
$ sudo snap install android-studio --classic
Then we install flutter.
$ sudo apt-get install flutter -classic
Then we test the installation. All ticks should be green.
$ flutter doctor