Doubts are Fun
https://www.youtube.com/watch?v=IYkIOJWMwHc
Vote the submission here: https://ai.google.dev/competition/projects/insta-solve
Releases are not available as of now. But you can still build the app yourself!
📝 Checklist
- Make sure you have the latest flutter sdk installed and running up!
- Install the latest Android SDK
After you have the project open in your favourite IDE,
- Create a
.env
file in the project root - Add a key
API_KEY=<Your API Key Here>
- Run
dart run build_runner build
to create theenv
file containing the API_KEY. - Create a
key.properties
file inandroid/
and add the following contents
storePassword=<password>
keyPassword=<password>
keyAlias=<alias>
storeFile=<keystore_file_path>
OR you can follow the instructions here Sign The App
Now you can build the apk using
flutter build apk
- Install to your device using
adb install build/app/outputs/flutter-apk/<apk_name>.apk
after connecting your android device!