Skip to content

Commit b2adf87

Browse files
committed
chore: name id android
1 parent 941038f commit b2adf87

File tree

10 files changed

+10
-701
lines changed

10 files changed

+10
-701
lines changed

.DS_Store

0 Bytes
Binary file not shown.

template/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.example.helloWorld",
38+
package = "com.example.helloworld",
3939
)
4040

4141
android_resource(
4242
name = "res",
43-
package = "com.example.helloWorld",
43+
package = "com.example.helloworld",
4444
res = "src/main/res",
4545
)
4646

template/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ android {
135135
}
136136

137137
defaultConfig {
138-
applicationId "com.example.helloWorld"
138+
applicationId "com.example.helloworld"
139139
minSdkVersion rootProject.ext.minSdkVersion
140140
targetSdkVersion rootProject.ext.targetSdkVersion
141141
versionCode 1

template/android/app/src/debug/java/com/HelloWorld/ReactNativeFlipper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* <p>This source code is licensed under the MIT license found in the LICENSE file in the root
55
* directory of this source tree.
66
*/
7-
package com.example.helloWorld;
7+
package com.example.helloworld;
88

99
import android.content.Context;
1010
import com.facebook.flipper.android.AndroidFlipperClient;

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

Lines changed: 2 additions & 2 deletions
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.helloWorld">
2+
package="com.example.helloworld">
33

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

@@ -23,7 +23,7 @@
2323
<action android:name="android.intent.action.VIEW" />
2424
<category android:name="android.intent.category.DEFAULT" />
2525
<category android:name="android.intent.category.BROWSABLE" />
26-
<!-- Accepts URIs that begin with "http://www.example.com.example.helloWorld-->
26+
<!-- Accepts URIs that begin with "http://www.example.com.example.helloworld-->
2727
<data android:scheme="http"
2828
android:host="www.example.com"
2929
android:pathPrefix="/HelloWorld" />

template/android/app/src/main/java/com/HelloWorld/MainActivity.java

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

33
import android.os.Bundle; // <- add this necessary import
44
import com.facebook.react.ReactActivity;

template/android/app/src/main/java/com/HelloWorld/MainApplication.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.example.helloWorld;
1+
package com.example.helloworld;
22

33
import android.app.Application;
44
import android.content.Context;
@@ -74,7 +74,7 @@ private static void initializeFlipper(
7474
We use reflection here to pick up the class that initializes Flipper,
7575
since Flipper library is not available in release mode
7676
*/
77-
Class<?> aClass = Class.forName("com.example.helloWorld.ReactNativeFlipper");
77+
Class<?> aClass = Class.forName("com.example.helloworld.ReactNativeFlipper");
7878
aClass
7979
.getMethod("initializeFlipper", Context.class, ReactInstanceManager.class)
8080
.invoke(null, context, reactInstanceManager);

template/ios/File.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// File.swift
33
// HelloWorld
44
//
5-
// Created by Gabriel Moncha on 13.03.2021.
5+
// Created by Henrique Marques on 16.05.2021.
66
//
77

88
import Foundation

0 commit comments

Comments
 (0)