Skip to content

Commit 612abc9

Browse files
committed
change package name.
1 parent de6abb3 commit 612abc9

File tree

8 files changed

+18
-13
lines changed

8 files changed

+18
-13
lines changed

android/app/BUCK

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ android_library(
3535

3636
android_build_config(
3737
name = "build_config",
38-
package = "com.myproj",
38+
package = "com.chatty.hello",
3939
)
4040

4141
android_resource(
4242
name = "res",
43-
package = "com.myproj",
43+
package = "com.chatty.hello",
4444
res = "src/main/res",
4545
)
4646

android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ android {
129129
}
130130

131131
defaultConfig {
132-
applicationId "com.myproj"
132+
applicationId "com.chatty.hello"
133133
minSdkVersion rootProject.ext.minSdkVersion
134134
targetSdkVersion rootProject.ext.targetSdkVersion
135135
versionCode 1

android/app/google-services.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
"client_info": {
1111
"mobilesdk_app_id": "1:934151871564:android:2967bcbf57971a0a00a8e9",
1212
"android_client_info": {
13-
"package_name": "com.myproj"
13+
"package_name": "com.chatty.hello"
1414
}
1515
},
1616
"oauth_client": [
1717
{
1818
"client_id": "934151871564-cjft1rvdkr5jpjacqqufj828h70iqj6l.apps.googleusercontent.com",
1919
"client_type": 1,
2020
"android_info": {
21-
"package_name": "com.myproj",
21+
"package_name": "com.chatty.hello",
2222
"certificate_hash": "3426e57fb9c3c83e731bc922fee5117cfdcf5085"
2323
}
2424
},

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.myproj">
2+
package="com.chatty.hello">
33

44
<uses-permission android:name="android.permission.INTERNET" />
55

android/app/src/main/java/com/myproj/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.myproj;
1+
package com.chatty.hello;
22

33
import com.facebook.react.ReactActivity;
44

android/app/src/main/java/com/myproj/MainApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.myproj;
1+
package com.chatty.hello;
22

33
import android.app.Application;
44
import android.util.Log;

android/fastlane/Appfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
json_key_file "" # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one
2-
package_name "com.myproj" # e.g. com.krausefx.app
2+
package_name "com.chatty.hello" # e.g. com.krausefx.app

package-lock.json

Lines changed: 9 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)