A Description of the app
-
Open in vscode
-
Use
crtl
+shift
+F
to find all replace in all files -
Follow the steps
- Change the
com.company.app_name
to com.your_company.your_app_name
that you register infirebase
panel - Change the
app_name
toyour_app_name
, UseAa
enabled to change only the small leter version - Change the
App_name
toyou_app_name_public_name
- Change the
-
Setting Up IOS
-
Download the
GoogleSerive-info.plist
for ios and paste/replace it inside -
ios > Runner
-
Change the
reverse-client-id
from theGoogleSerive-info.plist
inside theinfo.plist
file -
Setting Up Android
-
Download the
google-services.json
and replace it inside the android > app >google-services.json file -
Then run
flutter pub get
to install the packages -
Then run
flutter build apk
to generate android apk -
Then run
flutter build ios
to generate ios
For tracking the registered users inside the app
{
"rules": {
"regusers":{
"$uid":{
".read": "auth != null && auth.uid == $uid",
".write": "auth != null && auth.uid == $uid"
}
}
}
}