App Deployment

  1. You have to install Android Studio or VS code.

  2. Than make sure you have installed Flutter SDK in your system.

  3. Import project in Android Studio or VS Code

  4. Run command "flutter pub get"

  5. Run command "flutter clean"

  6. Make sure you have connected to android device or AVD.

  7. Then go to inside project directory lib\common\apidath.dart

    Enter Your Domain Link

    class APIData { 
     static const String domainLink = "ENTER YOUR DOMAIN LINK"; 
      static const String apiLink = domainLink +"api/";
  8. Enter your domain url like https://example.com/public/

  9. Click Play button or run command "flutter run"

  10. You can change your app icon from directory android\app\src\main\res

  11. 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

  12. Your project is running now

  13. You can change your package name ctrl+shift+F than ctrl+shift+R

  14. Change your app name ctrl+shift+F than ctrl+shift+R

Last updated