Skip to content

Commit d6674fa

Browse files
authored
Move firebase_core to the io.flutter.plugins org (flutter#371)
1 parent 28bc71a commit d6674fa

File tree

5 files changed

+7
-16
lines changed

5 files changed

+7
-16
lines changed

packages/firebase_core/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.5
2+
3+
* Moved to the io.flutter.plugins org.
4+
15
## 0.0.4
26

37
* Fixed warnings from the Dart 2.0 analyzer.

packages/firebase_core/android/src/main/java/com/yourcompany/firebasecore/FirebaseCorePlugin.java renamed to packages/firebase_core/android/src/main/java/io/flutter/plugins/firebase/core/FirebaseCorePlugin.java

File renamed without changes.

packages/firebase_core/example/android/app/src/main/AndroidManifest.xml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,8 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
22
package="io.flutter.plugins.firebasecoreexample">
33

4-
<!-- The INTERNET permission is required for development. Specifically,
5-
flutter needs it to communicate with the running application
6-
to allow setting breakpoints, to provide hot reload, etc.
7-
-->
84
<uses-permission android:name="android.permission.INTERNET"/>
95

10-
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
11-
calls FlutterMain.startInitialization(this); in its onCreate method.
12-
In most cases you can leave this as-is, but you if you want to provide
13-
additional functionality it is fine to subclass or reimplement
14-
FlutterApplication and put your custom class here. -->
156
<application
167
android:name="io.flutter.app.FlutterApplication"
178
android:label="firebase_core_example"
@@ -23,10 +14,6 @@
2314
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale"
2415
android:hardwareAccelerated="true"
2516
android:windowSoftInputMode="adjustResize">
26-
<!-- This keeps the window background of the activity showing
27-
until Flutter renders its first frame. It can be removed if
28-
there is no splash screen (such as the default splash screen
29-
defined in @style/LaunchTheme). -->
3017
<meta-data
3118
android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
3219
android:value="true" />

packages/firebase_core/example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@
443443
"$(inherited)",
444444
"$(PROJECT_DIR)/Flutter",
445445
);
446-
PRODUCT_BUNDLE_IDENTIFIER = com.yourcompany.firebaseCoreExample;
446+
PRODUCT_BUNDLE_IDENTIFIER = io.flutter.plugins.firebaseCoreExample;
447447
PRODUCT_NAME = "$(TARGET_NAME)";
448448
};
449449
name = Debug;
@@ -465,7 +465,7 @@
465465
"$(inherited)",
466466
"$(PROJECT_DIR)/Flutter",
467467
);
468-
PRODUCT_BUNDLE_IDENTIFIER = com.yourcompany.firebaseCoreExample;
468+
PRODUCT_BUNDLE_IDENTIFIER = io.flutter.plugins.firebaseCoreExample;
469469
PRODUCT_NAME = "$(TARGET_NAME)";
470470
};
471471
name = Release;

packages/firebase_core/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Flutter plugin for Firebase Core, enabling connecting to multiple
33
Firebase apps.
44
author: Flutter Team <flutter-dev@googlegroups.com>
55
homepage: https://github.com/flutter/plugins/tree/master/packages/firebase_core
6-
version: 0.0.4
6+
version: 0.0.5
77

88
flutter:
99
plugin:

0 commit comments

Comments
 (0)