Skip to content

Commit 2ce0ddc

Browse files
committed
package name change
1 parent d2f5f6d commit 2ce0ddc

File tree

7 files changed

+12
-9
lines changed

7 files changed

+12
-9
lines changed

android/app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ android {
3838

3939
defaultConfig {
4040
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
41-
applicationId "com.example.esports"
41+
applicationId "com.mickaelhernandez.esports"
4242
minSdkVersion 16
4343
targetSdkVersion 28
4444
versionCode flutterVersionCode.toInteger()

android/app/src/debug/AndroidManifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.example.esports">
2+
package="com.mickaelhernandez.esports">
33
<!-- Flutter needs it to communicate with the running application
44
to allow setting breakpoints, to provide hot reload, etc.
55
-->

android/app/src/main/AndroidManifest.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.example.esports">
2+
package="com.mickaelhernandez.esports">
33
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
44
calls FlutterMain.startInitialization(this); in its onCreate method.
55
In most cases you can leave this as-is, but you if you want to provide
66
additional functionality it is fine to subclass or reimplement
77
FlutterApplication and put your custom class here. -->
88
<application
99
android:name="io.flutter.app.FlutterApplication"
10-
android:label="esports"
10+
android:label="eSports"
1111
android:icon="@mipmap/ic_launcher">
1212
<activity
1313
android:name=".MainActivity"

android/app/src/main/kotlin/com/example/esports/MainActivity.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.example.esports
1+
package com.mickaelhernandez.esports
22

33
import android.os.Bundle
44
import io.flutter.app.FlutterActivity

android/app/src/profile/AndroidManifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.example.esports">
2+
package="com.mickaelhernandez.esports">
33
<!-- Flutter needs it to communicate with the running application
44
to allow setting breakpoints, to provide hot reload, etc.
55
-->

ios/Runner.xcodeproj/project.pbxproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@
320320
"$(inherited)",
321321
"$(PROJECT_DIR)/Flutter",
322322
);
323-
PRODUCT_BUNDLE_IDENTIFIER = com.example.esports;
323+
PRODUCT_BUNDLE_IDENTIFIER = com.mickaelhernandez.esports;
324324
PRODUCT_NAME = "$(TARGET_NAME)";
325325
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
326326
SWIFT_VERSION = 4.0;
@@ -454,7 +454,7 @@
454454
"$(inherited)",
455455
"$(PROJECT_DIR)/Flutter",
456456
);
457-
PRODUCT_BUNDLE_IDENTIFIER = com.example.esports;
457+
PRODUCT_BUNDLE_IDENTIFIER = com.mickaelhernandez.esports;
458458
PRODUCT_NAME = "$(TARGET_NAME)";
459459
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
460460
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
@@ -481,7 +481,7 @@
481481
"$(inherited)",
482482
"$(PROJECT_DIR)/Flutter",
483483
);
484-
PRODUCT_BUNDLE_IDENTIFIER = com.example.esports;
484+
PRODUCT_BUNDLE_IDENTIFIER = com.mickaelhernandez.esports;
485485
PRODUCT_NAME = "$(TARGET_NAME)";
486486
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
487487
SWIFT_VERSION = 4.0;

pubspec.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ dependencies:
3434
# Open URLs, phone number, and email apps
3535
url_launcher: ^5.5.0
3636

37+
# Discover network connectivity state
38+
connectivity: ^0.4.9
39+
3740
# Sticky header as a sliver
3841
flutter_sticky_header: ^0.4.5
3942

0 commit comments

Comments
 (0)