This is a Sneaker app built with Flutter for both iOS and Android platforms.
- Check that you have Flutter version 3.7 or above installed on your system.
- Clone this repository.
- Run
flutter run
to start the app on your connected device or emulator.
- iOS Simulator 14 Pro Max
- Android Simulator Pixel 5
If you don't have Flutter installed, follow these steps:
- Visit the official Flutter installation guide at https://flutter.dev/docs/get-started/install and select the operating system you're using.
- Follow the instructions on the page to download and install Flutter.
- Set up your preferred IDE. We recommend using Android Studio or Visual Studio Code.
- Run
flutter doctor
to check if there are any dependencies you need to install.
- Open Xcode on your Mac.
- In Xcode, go to Preferences > Locations > Command Line Tools, and select the latest version of Xcode.
- Open Terminal and run
open -a Simulator
to launch the iOS Simulator. - In the iOS Simulator, go to Hardware > Device and select a device.
- Run
flutter run
in the terminal to run the app on the selected device.
- Open Android Studio and select Configure > AVD Manager.
- Click Create Virtual Device, and follow the instructions to create a new emulator.
- Click Start on the emulator you want to use.
- Run
flutter run
in the terminal to run the app on the selected emulator.
- Open Xcode on your Mac.
- Open the
Runner.xcworkspace
file in theios
folder of your project. - In Xcode, go to Product > Scheme > Edit Scheme.
- Select the
Runner
scheme and select theRelease
build configuration. - Go to Product > Archive to build the app.
- Once the build is complete, go to Window > Organizer to distribute the app.
- Run
flutter build apk
in the terminal to build the app bundle. - The app bundle will be located in the
build/app/outputs/flutter-apk
folder of your project. - Alternatively, you can run
flutter build appbundle
to build the app bundle.