forked from flutter/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request flutter#4 from flutter/master
Update master
- Loading branch information
Showing
116 changed files
with
952 additions
and
352 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,11 @@ | ||
{ | ||
"name": "FlutterFire", | ||
"name": "FlutterFire - MOVED", | ||
"platforms": [ | ||
"Android", | ||
"iOS" | ||
], | ||
"content": "FlutterFire.md", | ||
"pages": { | ||
"packages/cloud_firestore/README.md": "Cloud Firestore", | ||
"packages/cloud_functions/README.md": "Cloud Functions", | ||
"packages/firebase_admob/README.md": "Admob", | ||
"packages/firebase_analytics/README.md": "Analytics", | ||
"packages/firebase_auth/README.md": "Authentication", | ||
"packages/firebase_core/README.md": "Core", | ||
"packages/firebase_crashlytics/README.md": "Crashlytics", | ||
"packages/firebase_database/README.md": "Realtime Database", | ||
"packages/firebase_dynamic_links/README.md": "Dynamic Links", | ||
"packages/firebase_messaging/README.md": "Cloud Messaging", | ||
"packages/firebase_ml_vision/README.md": "ML Kit: Vision", | ||
"packages/firebase_performance/README.md": "Performance Monitoring", | ||
"packages/firebase_remote_config/README.md": "Remote Config", | ||
"packages/firebase_storage/README.md": "Cloud Storage" | ||
} | ||
"related": [ | ||
"FirebaseExtended/flutterfire" | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# FlutterFire - MOVED | ||
|
||
The FlutterFire family of plugins has moved to the FirebaseExtended organization on GitHub. This makes it easier for us to collaborate with the Firebase team. We want to build the best integration we can! | ||
|
||
Visit FlutterFire at its new home: | ||
https://github.com/FirebaseExtended/flutterfire |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
examples/all_plugins/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
examples/all_plugins/ios/Runner.xcworkspace/contents.xcworkspacedata
This file was deleted.
Oops, something went wrong.
Binary file removed
BIN
-10.9 KB
...plugins/ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: android_intent | |
description: Flutter plugin for launching Android Intents. Not supported on iOS. | ||
author: Flutter Team <[email protected]> | ||
homepage: https://github.com/flutter/plugins/tree/master/packages/android_intent | ||
version: 0.3.3 | ||
version: 0.3.3+1 | ||
|
||
flutter: | ||
plugin: | ||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: google_maps_flutter | |
description: A Flutter plugin for integrating Google Maps in iOS and Android applications. | ||
author: Flutter Team <[email protected]> | ||
homepage: https://github.com/flutter/plugins/tree/master/packages/google_maps_flutter | ||
version: 0.5.21 | ||
version: 0.5.21+1 | ||
|
||
dependencies: | ||
flutter: | ||
|
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
19 changes: 19 additions & 0 deletions
19
...purchase/android/src/main/java/io/flutter/plugins/inapppurchase/BillingClientFactory.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package io.flutter.plugins.inapppurchase; | ||
|
||
import android.content.Context; | ||
import com.android.billingclient.api.BillingClient; | ||
import io.flutter.plugin.common.MethodChannel; | ||
|
||
interface BillingClientFactory { | ||
BillingClient createBillingClient(Context context, MethodChannel channel); | ||
} | ||
|
||
final class BillingClientFactoryImpl implements BillingClientFactory { | ||
|
||
@Override | ||
public BillingClient createBillingClient(Context context, MethodChannel channel) { | ||
return BillingClient.newBuilder(context) | ||
.setListener(new PluginPurchaseListener(channel)) | ||
.build(); | ||
} | ||
} |
Oops, something went wrong.