Created
January 25, 2019 12:26
-
-
Save trunghieuvn/a48fabf58007970a7c07ff741a39e5d7 to your computer and use it in GitHub Desktop.
demo-git
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package io.flutter.plugins; | |
import io.flutter.plugin.common.PluginRegistry; | |
import io.flutter.plugins.firebaseanalytics.FirebaseAnalyticsPlugin; | |
import io.flutter.plugins.firebaseauth.FirebaseAuthPlugin; | |
import io.flutter.plugins.firebase.core.FirebaseCorePlugin; | |
import com.peerwaya.flutteraccountkit.FlutterAccountKitPlugin; | |
import com.roughike.facebooklogin.facebooklogin.FacebookLoginPlugin; | |
import com.dexterous.flutterlocalnotifications.FlutterLocalNotificationsPlugin; | |
import io.flutter.plugins.googlemaps.GoogleMapsPlugin; | |
import io.flutter.plugins.googlesignin.GoogleSignInPlugin; | |
import io.flutter.plugins.sharedpreferences.SharedPreferencesPlugin; | |
/** | |
* Generated file. Do not edit. | |
*/ | |
public final class GeneratedPluginRegistrant { | |
public static void registerWith(PluginRegistry registry) { | |
if (alreadyRegisteredWith(registry)) { | |
return; | |
} | |
FirebaseAnalyticsPlugin.registerWith(registry.registrarFor("io.flutter.plugins.firebaseanalytics.FirebaseAnalyticsPlugin")); | |
FirebaseAuthPlugin.registerWith(registry.registrarFor("io.flutter.plugins.firebaseauth.FirebaseAuthPlugin")); | |
FirebaseCorePlugin.registerWith(registry.registrarFor("io.flutter.plugins.firebase.core.FirebaseCorePlugin")); | |
FlutterAccountKitPlugin.registerWith(registry.registrarFor("com.peerwaya.flutteraccountkit.FlutterAccountKitPlugin")); | |
FacebookLoginPlugin.registerWith(registry.registrarFor("com.roughike.facebooklogin.facebooklogin.FacebookLoginPlugin")); | |
FlutterLocalNotificationsPlugin.registerWith(registry.registrarFor("com.dexterous.flutterlocalnotifications.FlutterLocalNotificationsPlugin")); | |
GoogleMapsPlugin.registerWith(registry.registrarFor("io.flutter.plugins.googlemaps.GoogleMapsPlugin")); | |
GoogleSignInPlugin.registerWith(registry.registrarFor("io.flutter.plugins.googlesignin.GoogleSignInPlugin")); | |
SharedPreferencesPlugin.registerWith(registry.registrarFor("io.flutter.plugins.sharedpreferences.SharedPreferencesPlugin")); | |
} | |
private static boolean alreadyRegisteredWith(PluginRegistry registry) { | |
final String key = GeneratedPluginRegistrant.class.getCanonicalName(); | |
if (registry.hasPlugin(key)) { | |
return true; | |
} | |
registry.registrarFor(key); | |
return false; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment