diff --git a/examples/LaftelVideo/android/app/_BUCK b/examples/LaftelVideo/android/app/_BUCK
index 90eb5940..6f629726 100644
--- a/examples/LaftelVideo/android/app/_BUCK
+++ b/examples/LaftelVideo/android/app/_BUCK
@@ -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",
)
diff --git a/examples/LaftelVideo/android/app/build.gradle b/examples/LaftelVideo/android/app/build.gradle
index 1207aae6..1266df3d 100644
--- a/examples/LaftelVideo/android/app/build.gradle
+++ b/examples/LaftelVideo/android/app/build.gradle
@@ -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
diff --git a/examples/LaftelVideo/android/app/src/debug/java/com/laftelvideo/ReactNativeFlipper.java b/examples/LaftelVideo/android/app/src/debug/java/net/video/fabricexample/ReactNativeFlipper.java
similarity index 99%
rename from examples/LaftelVideo/android/app/src/debug/java/com/laftelvideo/ReactNativeFlipper.java
rename to examples/LaftelVideo/android/app/src/debug/java/net/video/fabricexample/ReactNativeFlipper.java
index 952e8001..426e7d70 100644
--- a/examples/LaftelVideo/android/app/src/debug/java/com/laftelvideo/ReactNativeFlipper.java
+++ b/examples/LaftelVideo/android/app/src/debug/java/net/video/fabricexample/ReactNativeFlipper.java
@@ -4,7 +4,7 @@
*
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;
diff --git a/examples/LaftelVideo/android/app/src/main/AndroidManifest.xml b/examples/LaftelVideo/android/app/src/main/AndroidManifest.xml
index 149b936d..91cd85a6 100644
--- a/examples/LaftelVideo/android/app/src/main/AndroidManifest.xml
+++ b/examples/LaftelVideo/android/app/src/main/AndroidManifest.xml
@@ -1,5 +1,5 @@
+ package="net.video.fabricexample">
diff --git a/examples/LaftelVideo/android/app/src/main/java/com/laftelvideo/MainActivity.java b/examples/LaftelVideo/android/app/src/main/java/net/video/fabricexample/MainActivity.java
similarity index 97%
rename from examples/LaftelVideo/android/app/src/main/java/com/laftelvideo/MainActivity.java
rename to examples/LaftelVideo/android/app/src/main/java/net/video/fabricexample/MainActivity.java
index 0032e4fd..ee26067a 100644
--- a/examples/LaftelVideo/android/app/src/main/java/com/laftelvideo/MainActivity.java
+++ b/examples/LaftelVideo/android/app/src/main/java/net/video/fabricexample/MainActivity.java
@@ -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";
}
/**
diff --git a/examples/LaftelVideo/android/app/src/main/java/com/laftelvideo/MainApplication.java b/examples/LaftelVideo/android/app/src/main/java/net/video/fabricexample/MainApplication.java
similarity index 98%
rename from examples/LaftelVideo/android/app/src/main/java/com/laftelvideo/MainApplication.java
rename to examples/LaftelVideo/android/app/src/main/java/net/video/fabricexample/MainApplication.java
index cd6c516e..b2d41535 100644
--- a/examples/LaftelVideo/android/app/src/main/java/com/laftelvideo/MainApplication.java
+++ b/examples/LaftelVideo/android/app/src/main/java/net/video/fabricexample/MainApplication.java
@@ -1,4 +1,4 @@
-package com.laftelvideo;
+package net.video.fabricexample;
import android.app.Application;
import com.facebook.react.PackageList;
diff --git a/examples/LaftelVideo/android/app/src/main/jni/CMakeLists.txt b/examples/LaftelVideo/android/app/src/main/jni/CMakeLists.txt
index 052ed087..119269e6 100644
--- a/examples/LaftelVideo/android/app/src/main/jni/CMakeLists.txt
+++ b/examples/LaftelVideo/android/app/src/main/jni/CMakeLists.txt
@@ -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)
diff --git a/examples/LaftelVideo/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h b/examples/LaftelVideo/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h
index 0f04604e..b2b85e64 100644
--- a/examples/LaftelVideo/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h
+++ b/examples/LaftelVideo/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h
@@ -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 initHybrid(jni::alias_ref);
diff --git a/examples/LaftelVideo/android/app/src/main/jni/MainComponentsRegistry.h b/examples/LaftelVideo/android/app/src/main/jni/MainComponentsRegistry.h
index 6fe815b0..011a3486 100644
--- a/examples/LaftelVideo/android/app/src/main/jni/MainComponentsRegistry.h
+++ b/examples/LaftelVideo/android/app/src/main/jni/MainComponentsRegistry.h
@@ -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();
diff --git a/examples/LaftelVideo/android/app/src/main/res/values/strings.xml b/examples/LaftelVideo/android/app/src/main/res/values/strings.xml
index efaf9417..30038583 100644
--- a/examples/LaftelVideo/android/app/src/main/res/values/strings.xml
+++ b/examples/LaftelVideo/android/app/src/main/res/values/strings.xml
@@ -1,3 +1,3 @@
- LaftelVideo
+ FabricExample
diff --git a/examples/LaftelVideo/android/settings.gradle b/examples/LaftelVideo/android/settings.gradle
index 03f70032..e3f34c3f 100644
--- a/examples/LaftelVideo/android/settings.gradle
+++ b/examples/LaftelVideo/android/settings.gradle
@@ -1,4 +1,4 @@
-rootProject.name = 'LaftelVideo'
+rootProject.name = 'FabricExample'
apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings)
include ':app'
includeBuild('../node_modules/react-native-gradle-plugin')
diff --git a/examples/LaftelVideo/app.json b/examples/LaftelVideo/app.json
index 275724a6..957883ae 100644
--- a/examples/LaftelVideo/app.json
+++ b/examples/LaftelVideo/app.json
@@ -1,4 +1,4 @@
{
- "name": "LaftelVideo",
- "displayName": "LaftelVideo"
+ "name": "FabricExample",
+ "displayName": "FabricExample"
}
\ No newline at end of file
diff --git a/examples/LaftelVideo/ios/LaftelVideo.xcodeproj/project.pbxproj b/examples/LaftelVideo/ios/FabricExample.xcodeproj/project.pbxproj
similarity index 72%
rename from examples/LaftelVideo/ios/LaftelVideo.xcodeproj/project.pbxproj
rename to examples/LaftelVideo/ios/FabricExample.xcodeproj/project.pbxproj
index 1724068f..dfba1c7c 100644
--- a/examples/LaftelVideo/ios/LaftelVideo.xcodeproj/project.pbxproj
+++ b/examples/LaftelVideo/ios/FabricExample.xcodeproj/project.pbxproj
@@ -7,12 +7,12 @@
objects = {
/* Begin PBXBuildFile section */
- 00E356F31AD99517003FC87E /* LaftelVideoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* LaftelVideoTests.m */; };
- 0C80B921A6F3F58F76C31292 /* libPods-LaftelVideo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-LaftelVideo.a */; };
+ 00E356F31AD99517003FC87E /* FabricExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* FabricExampleTests.m */; };
+ 0C80B921A6F3F58F76C31292 /* libPods-FabricExample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-FabricExample.a */; };
13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
- 7699B88040F8A987B510C191 /* libPods-LaftelVideo-LaftelVideoTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-LaftelVideo-LaftelVideoTests.a */; };
+ 7699B88040F8A987B510C191 /* libPods-FabricExample-FabricExampleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-FabricExample-FabricExampleTests.a */; };
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
/* End PBXBuildFile section */
@@ -22,27 +22,27 @@
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
- remoteInfo = LaftelVideo;
+ remoteInfo = "FabricExample";
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
- 00E356EE1AD99517003FC87E /* LaftelVideoTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LaftelVideoTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
+ 00E356EE1AD99517003FC87E /* FabricExampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "FabricExampleTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
- 00E356F21AD99517003FC87E /* LaftelVideoTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LaftelVideoTests.m; sourceTree = ""; };
- 13B07F961A680F5B00A75B9A /* LaftelVideo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = LaftelVideo.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = LaftelVideo/AppDelegate.h; sourceTree = ""; };
- 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = LaftelVideo/AppDelegate.mm; sourceTree = ""; };
- 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = LaftelVideo/Images.xcassets; sourceTree = ""; };
- 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = LaftelVideo/Info.plist; sourceTree = ""; };
- 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = LaftelVideo/main.m; sourceTree = ""; };
- 19F6CBCC0A4E27FBF8BF4A61 /* libPods-LaftelVideo-LaftelVideoTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-LaftelVideo-LaftelVideoTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 3B4392A12AC88292D35C810B /* Pods-LaftelVideo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LaftelVideo.debug.xcconfig"; path = "Target Support Files/Pods-LaftelVideo/Pods-LaftelVideo.debug.xcconfig"; sourceTree = ""; };
- 5709B34CF0A7D63546082F79 /* Pods-LaftelVideo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LaftelVideo.release.xcconfig"; path = "Target Support Files/Pods-LaftelVideo/Pods-LaftelVideo.release.xcconfig"; sourceTree = ""; };
- 5B7EB9410499542E8C5724F5 /* Pods-LaftelVideo-LaftelVideoTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LaftelVideo-LaftelVideoTests.debug.xcconfig"; path = "Target Support Files/Pods-LaftelVideo-LaftelVideoTests/Pods-LaftelVideo-LaftelVideoTests.debug.xcconfig"; sourceTree = ""; };
- 5DCACB8F33CDC322A6C60F78 /* libPods-LaftelVideo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-LaftelVideo.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = LaftelVideo/LaunchScreen.storyboard; sourceTree = ""; };
- 89C6BE57DB24E9ADA2F236DE /* Pods-LaftelVideo-LaftelVideoTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LaftelVideo-LaftelVideoTests.release.xcconfig"; path = "Target Support Files/Pods-LaftelVideo-LaftelVideoTests/Pods-LaftelVideo-LaftelVideoTests.release.xcconfig"; sourceTree = ""; };
+ 00E356F21AD99517003FC87E /* FabricExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "FabricExampleTests.m"; sourceTree = ""; };
+ 13B07F961A680F5B00A75B9A /* FabricExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "FabricExample.app"; sourceTree = BUILT_PRODUCTS_DIR; };
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = "FabricExample/AppDelegate.h"; sourceTree = ""; };
+ 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = "FabricExample/AppDelegate.mm"; sourceTree = ""; };
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = "FabricExample/Images.xcassets"; sourceTree = ""; };
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = "FabricExample/Info.plist"; sourceTree = ""; };
+ 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = "FabricExample/main.m"; sourceTree = ""; };
+ 19F6CBCC0A4E27FBF8BF4A61 /* libPods-FabricExample-FabricExampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-FabricExample-FabricExampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
+ 3B4392A12AC88292D35C810B /* Pods-FabricExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FabricExample.debug.xcconfig"; path = "Target Support Files/Pods-FabricExample/Pods-FabricExample.debug.xcconfig"; sourceTree = ""; };
+ 5709B34CF0A7D63546082F79 /* Pods-FabricExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FabricExample.release.xcconfig"; path = "Target Support Files/Pods-FabricExample/Pods-FabricExample.release.xcconfig"; sourceTree = ""; };
+ 5B7EB9410499542E8C5724F5 /* Pods-FabricExample-FabricExampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FabricExample-FabricExampleTests.debug.xcconfig"; path = "Target Support Files/Pods-FabricExample-FabricExampleTests/Pods-FabricExample-FabricExampleTests.debug.xcconfig"; sourceTree = ""; };
+ 5DCACB8F33CDC322A6C60F78 /* libPods-FabricExample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-FabricExample.a"; sourceTree = BUILT_PRODUCTS_DIR; };
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = "FabricExample/LaunchScreen.storyboard"; sourceTree = ""; };
+ 89C6BE57DB24E9ADA2F236DE /* Pods-FabricExample-FabricExampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FabricExample-FabricExampleTests.release.xcconfig"; path = "Target Support Files/Pods-FabricExample-FabricExampleTests/Pods-FabricExample-FabricExampleTests.release.xcconfig"; sourceTree = ""; };
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
/* End PBXFileReference section */
@@ -51,7 +51,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 7699B88040F8A987B510C191 /* libPods-LaftelVideo-LaftelVideoTests.a in Frameworks */,
+ 7699B88040F8A987B510C191 /* libPods-FabricExample-FabricExampleTests.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -59,20 +59,20 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 0C80B921A6F3F58F76C31292 /* libPods-LaftelVideo.a in Frameworks */,
+ 0C80B921A6F3F58F76C31292 /* libPods-FabricExample.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
- 00E356EF1AD99517003FC87E /* LaftelVideoTests */ = {
+ 00E356EF1AD99517003FC87E /* FabricExampleTests */ = {
isa = PBXGroup;
children = (
- 00E356F21AD99517003FC87E /* LaftelVideoTests.m */,
+ 00E356F21AD99517003FC87E /* FabricExampleTests.m */,
00E356F01AD99517003FC87E /* Supporting Files */,
);
- path = LaftelVideoTests;
+ path = "FabricExampleTests";
sourceTree = "";
};
00E356F01AD99517003FC87E /* Supporting Files */ = {
@@ -83,7 +83,7 @@
name = "Supporting Files";
sourceTree = "";
};
- 13B07FAE1A68108700A75B9A /* LaftelVideo */ = {
+ 13B07FAE1A68108700A75B9A /* FabricExample */ = {
isa = PBXGroup;
children = (
13B07FAF1A68108700A75B9A /* AppDelegate.h */,
@@ -93,15 +93,15 @@
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
13B07FB71A68108700A75B9A /* main.m */,
);
- name = LaftelVideo;
+ name = "FabricExample";
sourceTree = "";
};
2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
isa = PBXGroup;
children = (
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
- 5DCACB8F33CDC322A6C60F78 /* libPods-LaftelVideo.a */,
- 19F6CBCC0A4E27FBF8BF4A61 /* libPods-LaftelVideo-LaftelVideoTests.a */,
+ 5DCACB8F33CDC322A6C60F78 /* libPods-FabricExample.a */,
+ 19F6CBCC0A4E27FBF8BF4A61 /* libPods-FabricExample-FabricExampleTests.a */,
);
name = Frameworks;
sourceTree = "";
@@ -116,9 +116,9 @@
83CBB9F61A601CBA00E9B192 = {
isa = PBXGroup;
children = (
- 13B07FAE1A68108700A75B9A /* LaftelVideo */,
+ 13B07FAE1A68108700A75B9A /* FabricExample */,
832341AE1AAA6A7D00B99B32 /* Libraries */,
- 00E356EF1AD99517003FC87E /* LaftelVideoTests */,
+ 00E356EF1AD99517003FC87E /* FabricExampleTests */,
83CBBA001A601CBA00E9B192 /* Products */,
2D16E6871FA4F8E400B85C8A /* Frameworks */,
BBD78D7AC51CEA395F1C20DB /* Pods */,
@@ -131,8 +131,8 @@
83CBBA001A601CBA00E9B192 /* Products */ = {
isa = PBXGroup;
children = (
- 13B07F961A680F5B00A75B9A /* LaftelVideo.app */,
- 00E356EE1AD99517003FC87E /* LaftelVideoTests.xctest */,
+ 13B07F961A680F5B00A75B9A /* FabricExample.app */,
+ 00E356EE1AD99517003FC87E /* FabricExampleTests.xctest */,
);
name = Products;
sourceTree = "";
@@ -140,10 +140,10 @@
BBD78D7AC51CEA395F1C20DB /* Pods */ = {
isa = PBXGroup;
children = (
- 3B4392A12AC88292D35C810B /* Pods-LaftelVideo.debug.xcconfig */,
- 5709B34CF0A7D63546082F79 /* Pods-LaftelVideo.release.xcconfig */,
- 5B7EB9410499542E8C5724F5 /* Pods-LaftelVideo-LaftelVideoTests.debug.xcconfig */,
- 89C6BE57DB24E9ADA2F236DE /* Pods-LaftelVideo-LaftelVideoTests.release.xcconfig */,
+ 3B4392A12AC88292D35C810B /* Pods-FabricExample.debug.xcconfig */,
+ 5709B34CF0A7D63546082F79 /* Pods-FabricExample.release.xcconfig */,
+ 5B7EB9410499542E8C5724F5 /* Pods-FabricExample-FabricExampleTests.debug.xcconfig */,
+ 89C6BE57DB24E9ADA2F236DE /* Pods-FabricExample-FabricExampleTests.release.xcconfig */,
);
path = Pods;
sourceTree = "";
@@ -151,9 +151,9 @@
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
- 00E356ED1AD99517003FC87E /* LaftelVideoTests */ = {
+ 00E356ED1AD99517003FC87E /* FabricExampleTests */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "LaftelVideoTests" */;
+ buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "FabricExampleTests" */;
buildPhases = (
A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */,
00E356EA1AD99517003FC87E /* Sources */,
@@ -167,14 +167,14 @@
dependencies = (
00E356F51AD99517003FC87E /* PBXTargetDependency */,
);
- name = LaftelVideoTests;
- productName = LaftelVideoTests;
- productReference = 00E356EE1AD99517003FC87E /* LaftelVideoTests.xctest */;
+ name = "FabricExampleTests";
+ productname = "FabricExampleTests";
+ productReference = 00E356EE1AD99517003FC87E /* FabricExampleTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
- 13B07F861A680F5B00A75B9A /* LaftelVideo */ = {
+ 13B07F861A680F5B00A75B9A /* FabricExample */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "LaftelVideo" */;
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "FabricExample" */;
buildPhases = (
C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
FD10A7F022414F080027D42C /* Start Packager */,
@@ -189,9 +189,9 @@
);
dependencies = (
);
- name = LaftelVideo;
- productName = LaftelVideo;
- productReference = 13B07F961A680F5B00A75B9A /* LaftelVideo.app */;
+ name = "FabricExample";
+ productName = "FabricExample";
+ productReference = 13B07F961A680F5B00A75B9A /* FabricExample.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
@@ -211,7 +211,7 @@
};
};
};
- buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "LaftelVideo" */;
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "FabricExample" */;
compatibilityVersion = "Xcode 12.0";
developmentRegion = en;
hasScannedForEncodings = 0;
@@ -224,8 +224,8 @@
projectDirPath = "";
projectRoot = "";
targets = (
- 13B07F861A680F5B00A75B9A /* LaftelVideo */,
- 00E356ED1AD99517003FC87E /* LaftelVideoTests */,
+ 13B07F861A680F5B00A75B9A /* FabricExample */,
+ 00E356ED1AD99517003FC87E /* FabricExampleTests */,
);
};
/* End PBXProject section */
@@ -272,15 +272,15 @@
files = (
);
inputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-LaftelVideo/Pods-LaftelVideo-frameworks-${CONFIGURATION}-input-files.xcfilelist",
+ "${PODS_ROOT}/Target Support Files/Pods-FabricExample/Pods-FabricExample-frameworks-${CONFIGURATION}-input-files.xcfilelist",
);
name = "[CP] Embed Pods Frameworks";
outputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-LaftelVideo/Pods-LaftelVideo-frameworks-${CONFIGURATION}-output-files.xcfilelist",
+ "${PODS_ROOT}/Target Support Files/Pods-FabricExample/Pods-FabricExample-frameworks-${CONFIGURATION}-output-files.xcfilelist",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-LaftelVideo/Pods-LaftelVideo-frameworks.sh\"\n";
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FabricExample/Pods-FabricExample-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */ = {
@@ -298,7 +298,7 @@
outputFileListPaths = (
);
outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-LaftelVideo-LaftelVideoTests-checkManifestLockResult.txt",
+ "$(DERIVED_FILE_DIR)/Pods-FabricExample-FabricExampleTests-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
@@ -320,7 +320,7 @@
outputFileListPaths = (
);
outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-LaftelVideo-checkManifestLockResult.txt",
+ "$(DERIVED_FILE_DIR)/Pods-FabricExample-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
@@ -333,15 +333,15 @@
files = (
);
inputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-LaftelVideo-LaftelVideoTests/Pods-LaftelVideo-LaftelVideoTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
+ "${PODS_ROOT}/Target Support Files/Pods-FabricExample-FabricExampleTests/Pods-FabricExample-FabricExampleTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
);
name = "[CP] Embed Pods Frameworks";
outputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-LaftelVideo-LaftelVideoTests/Pods-LaftelVideo-LaftelVideoTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
+ "${PODS_ROOT}/Target Support Files/Pods-FabricExample-FabricExampleTests/Pods-FabricExample-FabricExampleTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-LaftelVideo-LaftelVideoTests/Pods-LaftelVideo-LaftelVideoTests-frameworks.sh\"\n";
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FabricExample-FabricExampleTests/Pods-FabricExample-FabricExampleTests-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
@@ -350,15 +350,15 @@
files = (
);
inputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-LaftelVideo/Pods-LaftelVideo-resources-${CONFIGURATION}-input-files.xcfilelist",
+ "${PODS_ROOT}/Target Support Files/Pods-FabricExample/Pods-FabricExample-resources-${CONFIGURATION}-input-files.xcfilelist",
);
name = "[CP] Copy Pods Resources";
outputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-LaftelVideo/Pods-LaftelVideo-resources-${CONFIGURATION}-output-files.xcfilelist",
+ "${PODS_ROOT}/Target Support Files/Pods-FabricExample/Pods-FabricExample-resources-${CONFIGURATION}-output-files.xcfilelist",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-LaftelVideo/Pods-LaftelVideo-resources.sh\"\n";
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FabricExample/Pods-FabricExample-resources.sh\"\n";
showEnvVarsInLog = 0;
};
F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */ = {
@@ -367,15 +367,15 @@
files = (
);
inputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-LaftelVideo-LaftelVideoTests/Pods-LaftelVideo-LaftelVideoTests-resources-${CONFIGURATION}-input-files.xcfilelist",
+ "${PODS_ROOT}/Target Support Files/Pods-FabricExample-FabricExampleTests/Pods-FabricExample-FabricExampleTests-resources-${CONFIGURATION}-input-files.xcfilelist",
);
name = "[CP] Copy Pods Resources";
outputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-LaftelVideo-LaftelVideoTests/Pods-LaftelVideo-LaftelVideoTests-resources-${CONFIGURATION}-output-files.xcfilelist",
+ "${PODS_ROOT}/Target Support Files/Pods-FabricExample-FabricExampleTests/Pods-FabricExample-FabricExampleTests-resources-${CONFIGURATION}-output-files.xcfilelist",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-LaftelVideo-LaftelVideoTests/Pods-LaftelVideo-LaftelVideoTests-resources.sh\"\n";
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FabricExample-FabricExampleTests/Pods-FabricExample-FabricExampleTests-resources.sh\"\n";
showEnvVarsInLog = 0;
};
FD10A7F022414F080027D42C /* Start Packager */ = {
@@ -404,7 +404,7 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 00E356F31AD99517003FC87E /* LaftelVideoTests.m in Sources */,
+ 00E356F31AD99517003FC87E /* FabricExampleTests.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -422,7 +422,7 @@
/* Begin PBXTargetDependency section */
00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = 13B07F861A680F5B00A75B9A /* LaftelVideo */;
+ target = 13B07F861A680F5B00A75B9A /* FabricExample */;
targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
@@ -430,14 +430,14 @@
/* Begin XCBuildConfiguration section */
00E356F61AD99517003FC87E /* Debug */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 5B7EB9410499542E8C5724F5 /* Pods-LaftelVideo-LaftelVideoTests.debug.xcconfig */;
+ baseConfigurationReference = 5B7EB9410499542E8C5724F5 /* Pods-FabricExample-FabricExampleTests.debug.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
- INFOPLIST_FILE = LaftelVideoTests/Info.plist;
+ INFOPLIST_FILE = "FabricExampleTests/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 12.4;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
@@ -449,19 +449,19 @@
"-lc++",
"$(inherited)",
);
- PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
+ PRODUCT_BUNDLE_IDENTIFIER = "net.video.fabricexample";
PRODUCT_NAME = "$(TARGET_NAME)";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/LaftelVideo.app/LaftelVideo";
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FabricExample.app/FabricExample";
};
name = Debug;
};
00E356F71AD99517003FC87E /* Release */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 89C6BE57DB24E9ADA2F236DE /* Pods-LaftelVideo-LaftelVideoTests.release.xcconfig */;
+ baseConfigurationReference = 89C6BE57DB24E9ADA2F236DE /* Pods-FabricExample-FabricExampleTests.release.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
COPY_PHASE_STRIP = NO;
- INFOPLIST_FILE = LaftelVideoTests/Info.plist;
+ INFOPLIST_FILE = "FabricExampleTests/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 12.4;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
@@ -473,21 +473,22 @@
"-lc++",
"$(inherited)",
);
- PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
+ PRODUCT_BUNDLE_IDENTIFIER = "net.video.fabricexample";
PRODUCT_NAME = "$(TARGET_NAME)";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/LaftelVideo.app/LaftelVideo";
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FabricExample.app/FabricExample";
};
name = Release;
};
13B07F941A680F5B00A75B9A /* Debug */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-LaftelVideo.debug.xcconfig */;
+ baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-FabricExample.debug.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = 1;
ENABLE_BITCODE = NO;
- INFOPLIST_FILE = LaftelVideo/Info.plist;
+ INFOPLIST_FILE = "FabricExample/Info.plist";
+ INFOPLIST_KEY_CFBundleDisplayName = "FabricExample";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
@@ -497,8 +498,8 @@
"-ObjC",
"-lc++",
);
- PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
- PRODUCT_NAME = LaftelVideo;
+ PRODUCT_BUNDLE_IDENTIFIER = "net.video.fabricexample";
+ PRODUCT_NAME = "FabricExample";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
@@ -507,12 +508,13 @@
};
13B07F951A680F5B00A75B9A /* Release */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-LaftelVideo.release.xcconfig */;
+ baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-FabricExample.release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = 1;
- INFOPLIST_FILE = LaftelVideo/Info.plist;
+ INFOPLIST_FILE = "FabricExample/Info.plist";
+ INFOPLIST_KEY_CFBundleDisplayName = "FabricExample";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
@@ -522,8 +524,8 @@
"-ObjC",
"-lc++",
);
- PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
- PRODUCT_NAME = LaftelVideo;
+ PRODUCT_BUNDLE_IDENTIFIER = "net.video.fabricexample";
+ PRODUCT_NAME = "FabricExample";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
};
@@ -669,7 +671,7 @@
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
- 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "LaftelVideoTests" */ = {
+ 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "FabricExampleTests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
00E356F61AD99517003FC87E /* Debug */,
@@ -678,7 +680,7 @@
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "LaftelVideo" */ = {
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "FabricExample" */ = {
isa = XCConfigurationList;
buildConfigurations = (
13B07F941A680F5B00A75B9A /* Debug */,
@@ -687,7 +689,7 @@
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "LaftelVideo" */ = {
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "FabricExample" */ = {
isa = XCConfigurationList;
buildConfigurations = (
83CBBA201A601CBA00E9B192 /* Debug */,
diff --git a/examples/LaftelVideo/ios/LaftelVideo.xcodeproj/xcshareddata/xcschemes/LaftelVideo.xcscheme b/examples/LaftelVideo/ios/FabricExample.xcodeproj/xcshareddata/xcschemes/FabricExample.xcscheme
similarity index 79%
rename from examples/LaftelVideo/ios/LaftelVideo.xcodeproj/xcshareddata/xcschemes/LaftelVideo.xcscheme
rename to examples/LaftelVideo/ios/FabricExample.xcodeproj/xcshareddata/xcschemes/FabricExample.xcscheme
index d9f77a5e..bc4aae22 100644
--- a/examples/LaftelVideo/ios/LaftelVideo.xcodeproj/xcshareddata/xcschemes/LaftelVideo.xcscheme
+++ b/examples/LaftelVideo/ios/FabricExample.xcodeproj/xcshareddata/xcschemes/FabricExample.xcscheme
@@ -15,9 +15,9 @@
+ BuildableName = "FabricExample.app"
+ BlueprintName = "FabricExample"
+ ReferencedContainer = "container:FabricExample.xcodeproj">
@@ -33,9 +33,9 @@
+ BuildableName = "FabricExampleTests.xctest"
+ BlueprintName = "FabricExampleTests"
+ ReferencedContainer = "container:FabricExample.xcodeproj">
@@ -55,9 +55,9 @@
+ BuildableName = "FabricExample.app"
+ BlueprintName = "FabricExample"
+ ReferencedContainer = "container:FabricExample.xcodeproj">
@@ -72,9 +72,9 @@
+ BuildableName = "FabricExample.app"
+ BlueprintName = "FabricExample"
+ ReferencedContainer = "container:FabricExample.xcodeproj">
diff --git a/examples/LaftelVideo/ios/LaftelVideo.xcworkspace/contents.xcworkspacedata b/examples/LaftelVideo/ios/FabricExample.xcworkspace/contents.xcworkspacedata
similarity index 78%
rename from examples/LaftelVideo/ios/LaftelVideo.xcworkspace/contents.xcworkspacedata
rename to examples/LaftelVideo/ios/FabricExample.xcworkspace/contents.xcworkspacedata
index 2b77576e..3e9ae53e 100644
--- a/examples/LaftelVideo/ios/LaftelVideo.xcworkspace/contents.xcworkspacedata
+++ b/examples/LaftelVideo/ios/FabricExample.xcworkspace/contents.xcworkspacedata
@@ -2,7 +2,7 @@
+ location = "group:FabricExample.xcodeproj">
diff --git a/examples/LaftelVideo/ios/LaftelVideo/AppDelegate.h b/examples/LaftelVideo/ios/FabricExample/AppDelegate.h
similarity index 100%
rename from examples/LaftelVideo/ios/LaftelVideo/AppDelegate.h
rename to examples/LaftelVideo/ios/FabricExample/AppDelegate.h
diff --git a/examples/LaftelVideo/ios/LaftelVideo/AppDelegate.mm b/examples/LaftelVideo/ios/FabricExample/AppDelegate.mm
similarity index 97%
rename from examples/LaftelVideo/ios/LaftelVideo/AppDelegate.mm
rename to examples/LaftelVideo/ios/FabricExample/AppDelegate.mm
index 53457b1c..42eee33f 100644
--- a/examples/LaftelVideo/ios/LaftelVideo/AppDelegate.mm
+++ b/examples/LaftelVideo/ios/FabricExample/AppDelegate.mm
@@ -44,7 +44,7 @@ static NSString *const kRNConcurrentRoot = @"concurrentRoot";
#endif
NSDictionary *initProps = [self prepareInitialProps];
- UIView *rootView = RCTAppSetupDefaultRootView(bridge, @"LaftelVideo", initProps, true);
+ UIView *rootView = RCTAppSetupDefaultRootView(bridge, @"FabricExample", initProps, true);
if (@available(iOS 13.0, *)) {
rootView.backgroundColor = [UIColor systemBackgroundColor];
diff --git a/examples/LaftelVideo/ios/LaftelVideo/Images.xcassets/AppIcon.appiconset/Contents.json b/examples/LaftelVideo/ios/FabricExample/Images.xcassets/AppIcon.appiconset/Contents.json
similarity index 100%
rename from examples/LaftelVideo/ios/LaftelVideo/Images.xcassets/AppIcon.appiconset/Contents.json
rename to examples/LaftelVideo/ios/FabricExample/Images.xcassets/AppIcon.appiconset/Contents.json
diff --git a/examples/LaftelVideo/ios/LaftelVideo/Images.xcassets/Contents.json b/examples/LaftelVideo/ios/FabricExample/Images.xcassets/Contents.json
similarity index 100%
rename from examples/LaftelVideo/ios/LaftelVideo/Images.xcassets/Contents.json
rename to examples/LaftelVideo/ios/FabricExample/Images.xcassets/Contents.json
diff --git a/examples/LaftelVideo/ios/LaftelVideo/Info.plist b/examples/LaftelVideo/ios/FabricExample/Info.plist
similarity index 96%
rename from examples/LaftelVideo/ios/LaftelVideo/Info.plist
rename to examples/LaftelVideo/ios/FabricExample/Info.plist
index 8b695aa4..860ea180 100644
--- a/examples/LaftelVideo/ios/LaftelVideo/Info.plist
+++ b/examples/LaftelVideo/ios/FabricExample/Info.plist
@@ -5,7 +5,7 @@
CFBundleDevelopmentRegion
en
CFBundleDisplayName
- LaftelVideo
+ FabricExample
CFBundleExecutable
$(EXECUTABLE_NAME)
CFBundleIdentifier
@@ -36,7 +36,7 @@
NSLocationWhenInUseUsageDescription
-
+
UILaunchStoryboardName
LaunchScreen
UIRequiredDeviceCapabilities
diff --git a/examples/LaftelVideo/ios/LaftelVideo/LaunchScreen.storyboard b/examples/LaftelVideo/ios/FabricExample/LaunchScreen.storyboard
similarity index 94%
rename from examples/LaftelVideo/ios/LaftelVideo/LaunchScreen.storyboard
rename to examples/LaftelVideo/ios/FabricExample/LaunchScreen.storyboard
index 74db46a0..c4f28caf 100644
--- a/examples/LaftelVideo/ios/LaftelVideo/LaunchScreen.storyboard
+++ b/examples/LaftelVideo/ios/FabricExample/LaunchScreen.storyboard
@@ -16,7 +16,7 @@
-