Fixes for FOSS build
This commit is contained in:
parent
2e3f3444a7
commit
f937acd76f
|
|
@ -7,6 +7,6 @@ class AppReview {
|
|||
|
||||
static void requestReview() => null;
|
||||
|
||||
static void openStoreListing() =>
|
||||
launch(getRateAppURL(navigatorKey.currentContext));
|
||||
static void openStoreListing() => launchUrl(
|
||||
Uri.dataFromString(getRateAppURL(navigatorKey.currentContext!)));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,17 +1,17 @@
|
|||
class GoogleOAuth {
|
||||
|
||||
static bool get isEnabled => false;
|
||||
|
||||
static Future<bool> signIn(Function(String, String) callback, {bool isSilent = false}) async {
|
||||
//
|
||||
static Future<bool> signIn(Function(String, String) callback,
|
||||
{bool isSilent = false}) async {
|
||||
return false;
|
||||
}
|
||||
|
||||
static Future<bool> signUp(Function(String, String) callback) async {
|
||||
//
|
||||
return false;
|
||||
}
|
||||
|
||||
static Future<bool> requestGmailScope() async {
|
||||
//
|
||||
return false;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
@ -20,11 +20,11 @@ class GoogleOAuth {
|
|||
}
|
||||
*/
|
||||
|
||||
static Future<GoogleSignInAccount?> signOut() async {
|
||||
static Future<Null> signOut() async {
|
||||
//
|
||||
}
|
||||
|
||||
static Future<GoogleSignInAccount?> disconnect() async {
|
||||
static Future<Null> disconnect() async {
|
||||
//
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue