1-Open Google Play Console
2-App content
3-Data safety => Manage
4-Overview click next
5-Answer the questions (then next):
## step 1 - add intent in AndroidManifest.xml file | |
<intent-filter> | |
<action android:name="FLUTTER_NOTIFICATION_CLICK" /> | |
<category android:name="android.intent.category.DEFAULT" /> | |
</intent-filter> | |
## step 2 - add this in main.dart file in main function | |
WidgetsFlutterBinding.ensureInitialized(); |
1-Open Google Play Console
2-App content
3-Data safety => Manage
4-Overview click next
5-Answer the questions (then next):
git init | |
git add . | |
git commit -m "first commit" | |
git remote set-url origin https://github.com/harunme3/flutter_app_settings.git | |
git push -u origin master |