feat: renamed with react-native-rename

This commit is contained in:
yungblud
2023-05-08 18:53:00 +09:00
parent 0ca348f4b5
commit 805ccb9f47
26 changed files with 124 additions and 122 deletions

View File

@@ -35,12 +35,12 @@ android_library(
android_build_config(
name = "build_config",
package = "com.laftelvideo",
package = "net.video.fabricexample",
)
android_resource(
name = "res",
package = "com.laftelvideo",
package = "net.video.fabricexample",
res = "src/main/res",
)

View File

@@ -93,9 +93,9 @@ android {
compileSdkVersion rootProject.ext.compileSdkVersion
namespace "com.laftelvideo"
namespace "net.video.fabricexample"
defaultConfig {
applicationId "com.laftelvideo"
applicationId "net.video.fabricexample"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1

View File

@@ -4,7 +4,7 @@
* <p>This source code is licensed under the MIT license found in the LICENSE file in the root
* directory of this source tree.
*/
package com.laftelvideo;
package net.video.fabricexample;
import android.content.Context;
import com.facebook.flipper.android.AndroidFlipperClient;

View File

@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.laftelvideo">
package="net.video.fabricexample">
<uses-permission android:name="android.permission.INTERNET" />

View File

@@ -1,4 +1,4 @@
package com.laftelvideo;
package net.video.fabricexample;
import android.os.Bundle;
import android.view.View;
@@ -20,7 +20,7 @@ public class MainActivity extends ReactActivity {
*/
@Override
protected String getMainComponentName() {
return "LaftelVideo";
return "FabricExample";
}
/**

View File

@@ -1,4 +1,4 @@
package com.laftelvideo;
package net.video.fabricexample;
import android.app.Application;
import com.facebook.react.PackageList;

View File

@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.13)
# Define the library name here.
project(laftelvideo_appmodules)
project(fabricexample_appmodules)
# This file includes all the necessary to let you build your application with the New Architecture.
include(${REACT_ANDROID_DIR}/cmake-utils/ReactNative-application.cmake)

View File

@@ -14,7 +14,7 @@ class MainApplicationTurboModuleManagerDelegate
public:
// Adapt it to the package you used for your Java class.
static constexpr auto kJavaDescriptor =
"Lcom/laftelvideo/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate;";
"Lnet/video/fabricexample/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate;";
static jni::local_ref<jhybriddata> initHybrid(jni::alias_ref<jhybridobject>);

View File

@@ -13,7 +13,7 @@ class MainComponentsRegistry
public:
// Adapt it to the package you used for your Java class.
constexpr static auto kJavaDescriptor =
"Lcom/laftelvideo/newarchitecture/components/MainComponentsRegistry;";
"Lnet/video/fabricexample/newarchitecture/components/MainComponentsRegistry;";
static void registerNatives();

View File

@@ -1,3 +1,3 @@
<resources>
<string name="app_name">LaftelVideo</string>
<string name="app_name">FabricExample</string>
</resources>