mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-28 18:03:14 +08:00
ios Review: Allow it to work on ios9+
Also provide the app id so it works on any version!
This commit is contained in:
@ -54,5 +54,9 @@
|
|||||||
</array>
|
</array>
|
||||||
<key>UIViewControllerBasedStatusBarAppearance</key>
|
<key>UIViewControllerBasedStatusBarAppearance</key>
|
||||||
<false/>
|
<false/>
|
||||||
|
<key>LSApplicationQueriesSchemes</key>
|
||||||
|
<array>
|
||||||
|
<string>itms</string>
|
||||||
|
</array>
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
@ -73,7 +73,10 @@ class AppDrawer extends StatelessWidget {
|
|||||||
leading: Icon(Icons.feedback, color: textStyle.color),
|
leading: Icon(Icons.feedback, color: textStyle.color),
|
||||||
title: Text('Rate Us', style: textStyle),
|
title: Text('Rate Us', style: textStyle),
|
||||||
onTap: () {
|
onTap: () {
|
||||||
LaunchReview.launch();
|
LaunchReview.launch(
|
||||||
|
androidAppId: "io.gitjournal.gitjournal",
|
||||||
|
iOSAppId: "1466519634",
|
||||||
|
);
|
||||||
Navigator.pop(context);
|
Navigator.pop(context);
|
||||||
|
|
||||||
getAnalytics().logEvent(
|
getAnalytics().logEvent(
|
||||||
|
Reference in New Issue
Block a user