Skip to content

Commit adf717c

Browse files
committed
Fixed the package name to conform to standard in the repo
- replaced com.example with github.nisrulz
1 parent 9e7a62b commit adf717c

File tree

12 files changed

+16
-16
lines changed

12 files changed

+16
-16
lines changed

expense_planner/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
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.expense_planner"
41+
applicationId "github.nisrulz.expense_planner"
4242
minSdkVersion 16
4343
targetSdkVersion 28
4444
versionCode flutterVersionCode.toInteger()

expense_planner/android/app/src/debug/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
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.expense_planner">
2+
package="github.nisrulz.expense_planner">
33
<!-- Flutter needs it to communicate with the running application
44
to allow setting breakpoints, to provide hot reload, etc.
55
-->

expense_planner/android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
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.expense_planner">
2+
package="github.nisrulz.expense_planner">
33

44
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
55
calls FlutterMain.startInitialization(this); in its onCreate method.

expense_planner/android/app/src/main/kotlin/com/example/expense_planner/MainActivity.kt renamed to expense_planner/android/app/src/main/kotlin/github/nisrulz/expense_planner/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.example.expense_planner
1+
package github.nisrulz.expense_planner
22

33
import android.os.Bundle
44

expense_planner/android/app/src/profile/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
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.expense_planner">
2+
package="github.nisrulz.expense_planner">
33
<!-- Flutter needs it to communicate with the running application
44
to allow setting breakpoints, to provide hot reload, etc.
55
-->

expense_planner/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@
321321
"$(inherited)",
322322
"$(PROJECT_DIR)/Flutter",
323323
);
324-
PRODUCT_BUNDLE_IDENTIFIER = com.example.expensePlanner;
324+
PRODUCT_BUNDLE_IDENTIFIER = github.nisrulz.expensePlanner;
325325
PRODUCT_NAME = "$(TARGET_NAME)";
326326
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
327327
SWIFT_VERSION = 4.0;
@@ -454,7 +454,7 @@
454454
"$(inherited)",
455455
"$(PROJECT_DIR)/Flutter",
456456
);
457-
PRODUCT_BUNDLE_IDENTIFIER = com.example.expensePlanner;
457+
PRODUCT_BUNDLE_IDENTIFIER = github.nisrulz.expensePlanner;
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.expensePlanner;
484+
PRODUCT_BUNDLE_IDENTIFIER = github.nisrulz.expensePlanner;
485485
PRODUCT_NAME = "$(TARGET_NAME)";
486486
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
487487
SWIFT_VERSION = 4.0;

using_firebase_db/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ android {
3333

3434
defaultConfig {
3535
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
36-
applicationId "com.example.using_firebase_db"
36+
applicationId "github.nisrulz.using_firebase_db"
3737
minSdkVersion 16
3838
targetSdkVersion 28
3939
versionCode flutterVersionCode.toInteger()

using_firebase_db/android/app/src/debug/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
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.using_firebase_db">
2+
package="github.nisrulz.using_firebase_db">
33
<!-- Flutter needs it to communicate with the running application
44
to allow setting breakpoints, to provide hot reload, etc.
55
-->

using_firebase_db/android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
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.using_firebase_db">
2+
package="github.nisrulz.using_firebase_db">
33

44
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
55
calls FlutterMain.startInitialization(this); in its onCreate method.

using_firebase_db/android/app/src/main/java/com/example/using_firebase_db/MainActivity.java renamed to using_firebase_db/android/app/src/main/java/github/nisrulz/using_firebase_db/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.example.using_firebase_db;
1+
package github.nisrulz.using_firebase_db;
22

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

using_firebase_db/android/app/src/profile/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
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.using_firebase_db">
2+
package="github.nisrulz.using_firebase_db">
33
<!-- Flutter needs it to communicate with the running application
44
to allow setting breakpoints, to provide hot reload, etc.
55
-->

using_firebase_db/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@
323323
"$(inherited)",
324324
"$(PROJECT_DIR)/Flutter",
325325
);
326-
PRODUCT_BUNDLE_IDENTIFIER = com.example.usingFirebaseDb;
326+
PRODUCT_BUNDLE_IDENTIFIER = github.nisrulz.usingFirebaseDb;
327327
PRODUCT_NAME = "$(TARGET_NAME)";
328328
VERSIONING_SYSTEM = "apple-generic";
329329
};
@@ -448,7 +448,7 @@
448448
"$(inherited)",
449449
"$(PROJECT_DIR)/Flutter",
450450
);
451-
PRODUCT_BUNDLE_IDENTIFIER = com.example.usingFirebaseDb;
451+
PRODUCT_BUNDLE_IDENTIFIER = github.nisrulz.usingFirebaseDb;
452452
PRODUCT_NAME = "$(TARGET_NAME)";
453453
VERSIONING_SYSTEM = "apple-generic";
454454
};
@@ -471,7 +471,7 @@
471471
"$(inherited)",
472472
"$(PROJECT_DIR)/Flutter",
473473
);
474-
PRODUCT_BUNDLE_IDENTIFIER = com.example.usingFirebaseDb;
474+
PRODUCT_BUNDLE_IDENTIFIER = github.nisrulz.usingFirebaseDb;
475475
PRODUCT_NAME = "$(TARGET_NAME)";
476476
VERSIONING_SYSTEM = "apple-generic";
477477
};

0 commit comments

Comments
 (0)