App Deployment
You will get a project of app after extracting downloaded files
Android App Installation
You have to install Android Studio or VS code.
Than make sure you have installed flutter sdk in your system.
Import project in Android Studio or VS Code
Run command "flutter pub get"
Run command "flutter clean"
Make sure you have connected to android device or AVD.
Than go to inside project directory/lib/services/constant.dart
Enter your domain url eg: https://example.com/public/
Click Play button or run command "flutter run"
You can change your app icon from directory android\app\src\main\res
For generate these icons of different size use website https://makeappicon.com/ For this you need to upload you icon of size 1536 X 1536
Your project is running now
To change your app package name
Run this command to change the package name.
Copy
flutter pub run change_app_package_name:main com.new.package.name
Where
com.new.package.name
is the new package name that you want for your app. replace it with any name you want
Change your app name ctrl+shift+F to find quizly than ctrl+shift+R to replace it with your app name
To Change Your Domain Link
Go to lib ->services-> constant.dart
class APIData {
// Replace with your domain link
static const String domainLink = "YOUR_DOMIAN_LINK/public";
static const String domainApiLink = domainLink+"api/";

To Change Your Launcher icon
Go to android-> app-> src-> main ->res

Last updated