A Description of the app
-
Open in vscode
-
Use
crtl+shift+Fto find all replace in all files -
Follow the steps
- Change the
com.company.app_nameto com.your_company.your_app_namethat you register infirebasepanel - Change the
app_nametoyour_app_name, UseAaenabled to change only the small leter version - Change the
App_nametoyou_app_name_public_name
- Change the
-
Setting Up IOS
-
Download the
GoogleSerive-info.plistfor ios and paste/replace it inside -
ios > Runner
-
Change the
reverse-client-idfrom theGoogleSerive-info.plistinside theinfo.plistfile -
Setting Up Android
-
Download the
google-services.jsonand replace it inside the android > app >google-services.json file -
Then run
flutter pub getto install the packages -
Then run
flutter build apkto generate android apk -
Then run
flutter build iosto 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"
}
}
}
}