├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── reactnativechatimageaudio │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── index.js ├── ios ├── reactNativeChatImageAudio-tvOS │ └── Info.plist ├── reactNativeChatImageAudio-tvOSTests │ └── Info.plist ├── reactNativeChatImageAudio.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── reactNativeChatImageAudio-tvOS.xcscheme │ │ └── reactNativeChatImageAudio.xcscheme ├── reactNativeChatImageAudio │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── reactNativeChatImageAudioTests │ ├── Info.plist │ └── reactNativeChatImageAudioTests.m ├── package-lock.json ├── package.json ├── src ├── components │ ├── chat.js │ └── enterRoom.js └── config │ ├── AwsConfig.js │ └── FirebaseConfig.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore unexpected extra "@providesModule" 9 | .*/node_modules/.*/node_modules/fbjs/.* 10 | 11 | ; Ignore duplicate module providers 12 | ; For RN Apps installed via npm, "Libraries" folder is inside 13 | ; "node_modules/react-native" but in the source repo it is in the root 14 | .*/Libraries/react-native/React.js 15 | 16 | ; Ignore polyfills 17 | .*/Libraries/polyfills/.* 18 | 19 | ; Ignore metro 20 | .*/node_modules/metro/.* 21 | 22 | [include] 23 | 24 | [libs] 25 | node_modules/react-native/Libraries/react-native/react-native-interface.js 26 | node_modules/react-native/flow/ 27 | node_modules/react-native/flow-github/ 28 | 29 | [options] 30 | emoji=true 31 | 32 | module.system=haste 33 | module.system.haste.use_name_reducers=true 34 | # get basename 35 | module.system.haste.name_reducers='^.*/\([a-zA-Z0-9$_.-]+\.js\(\.flow\)?\)$' -> '\1' 36 | # strip .js or .js.flow suffix 37 | module.system.haste.name_reducers='^\(.*\)\.js\(\.flow\)?$' -> '\1' 38 | # strip .ios suffix 39 | module.system.haste.name_reducers='^\(.*\)\.ios$' -> '\1' 40 | module.system.haste.name_reducers='^\(.*\)\.android$' -> '\1' 41 | module.system.haste.name_reducers='^\(.*\)\.native$' -> '\1' 42 | module.system.haste.paths.blacklist=.*/__tests__/.* 43 | module.system.haste.paths.blacklist=.*/__mocks__/.* 44 | module.system.haste.paths.blacklist=/node_modules/react-native/Libraries/Animated/src/polyfills/.* 45 | module.system.haste.paths.whitelist=/node_modules/react-native/Libraries/.* 46 | 47 | munge_underscores=true 48 | 49 | module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub' 50 | 51 | module.file_ext=.js 52 | module.file_ext=.jsx 53 | module.file_ext=.json 54 | module.file_ext=.native.js 55 | 56 | suppress_type=$FlowIssue 57 | suppress_type=$FlowFixMe 58 | suppress_type=$FlowFixMeProps 59 | suppress_type=$FlowFixMeState 60 | 61 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 62 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 63 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 64 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 65 | 66 | [version] 67 | ^0.75.0 68 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | project.xcworkspace 24 | 25 | # Android/IntelliJ 26 | # 27 | build/ 28 | .idea 29 | .gradle 30 | local.properties 31 | *.iml 32 | 33 | # node.js 34 | # 35 | node_modules/ 36 | npm-debug.log 37 | yarn-error.log 38 | 39 | # BUCK 40 | buck-out/ 41 | \.buckd/ 42 | *.keystore 43 | 44 | # fastlane 45 | # 46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 47 | # screenshots whenever they are needed. 48 | # For more information about the recommended setup visit: 49 | # https://docs.fastlane.tools/best-practices/source-control/ 50 | 51 | */fastlane/report.xml 52 | */fastlane/Preview.html 53 | */fastlane/screenshots 54 | 55 | # Bundle artifact 56 | *.jsbundle 57 | 58 | sensitive.json 59 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { StyleSheet, Text, View } from "react-native"; 3 | import { ActionConst, Actions, Router, Scene } from "react-native-router-flux"; 4 | import enterRoom from "./src/components/enterRoom"; 5 | import chat from "./src/components/chat"; 6 | 7 | export default class App extends React.Component { 8 | render() { 9 | return ( 10 | 11 | 12 | 18 | 24 | 25 | 26 | ); 27 | } 28 | } 29 | 30 | const styles = StyleSheet.create({ 31 | container: { 32 | flex: 1, 33 | backgroundColor: "#fff", 34 | alignItems: "center", 35 | justifyContent: "center" 36 | } 37 | }); 38 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![ReactNativeChatImageAudio](https://img.youtube.com/vi/o-AKiet6xgo/0.jpg)](https://www.youtube.com/watch?v=o-AKiet6xgo "ReactNativeChatImageAudio") 2 | 3 | Just run npm install, react-native link, react-native run-ios, or react-native run-android 4 | 5 | You'll need to create a sensitive.json file in the root directory of the project. This will contain your aws and firebase info 6 | 7 | Its structure: 8 | { 9 | "BUCKET": "", 10 | "ACCESS_KEY": "", 11 | "SECRET_KEY": "", 12 | "APIKEY": "", 13 | "keyPrefix": "", 14 | "region": "" 15 | "authDomain": "", 16 | "databaseURL": "", 17 | "projectId": "", 18 | "storageBucket": "", 19 | "messagingSenderId": "", 20 | } 21 | 22 | You'll need to add permissions: 23 | IOS: xCode info.plist. 24 | Privacy - Microphone Usage Description 25 | Privacy - Photo Library 26 | Privacy - Camera Usage 27 | 28 | Android: 29 | 30 | 31 | 32 | Names and rooms are case sensitive. 33 | 34 | If app crashes when trying to open the photo library:https://github.com/react-community/react-native-image-picker/issues/667 35 | -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- 1 | # To learn about Buck see [Docs](https://buckbuild.com/). 2 | # To run your application with Buck: 3 | # - install Buck 4 | # - `npm start` - to start the packager 5 | # - `cd android` 6 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 7 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 8 | # - `buck install -r android/app` - compile, install and run application 9 | # 10 | 11 | lib_deps = [] 12 | 13 | for jarfile in glob(['libs/*.jar']): 14 | name = 'jars__' + jarfile[jarfile.rindex('/') + 1: jarfile.rindex('.jar')] 15 | lib_deps.append(':' + name) 16 | prebuilt_jar( 17 | name = name, 18 | binary_jar = jarfile, 19 | ) 20 | 21 | for aarfile in glob(['libs/*.aar']): 22 | name = 'aars__' + aarfile[aarfile.rindex('/') + 1: aarfile.rindex('.aar')] 23 | lib_deps.append(':' + name) 24 | android_prebuilt_aar( 25 | name = name, 26 | aar = aarfile, 27 | ) 28 | 29 | android_library( 30 | name = "all-libs", 31 | exported_deps = lib_deps, 32 | ) 33 | 34 | android_library( 35 | name = "app-code", 36 | srcs = glob([ 37 | "src/main/java/**/*.java", 38 | ]), 39 | deps = [ 40 | ":all-libs", 41 | ":build_config", 42 | ":res", 43 | ], 44 | ) 45 | 46 | android_build_config( 47 | name = "build_config", 48 | package = "com.reactnativechatimageaudio", 49 | ) 50 | 51 | android_resource( 52 | name = "res", 53 | package = "com.reactnativechatimageaudio", 54 | res = "src/main/res", 55 | ) 56 | 57 | android_binary( 58 | name = "app", 59 | keystore = "//android/keystores:debug", 60 | manifest = "src/main/AndroidManifest.xml", 61 | package_type = "debug", 62 | deps = [ 63 | ":app-code", 64 | ], 65 | ) 66 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | 5 | /** 6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 7 | * and bundleReleaseJsAndAssets). 8 | * These basically call `react-native bundle` with the correct arguments during the Android build 9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 10 | * bundle directly from the development server. Below you can see all the possible configurations 11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 12 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 13 | * 14 | * project.ext.react = [ 15 | * // the name of the generated asset file containing your JS bundle 16 | * bundleAssetName: "index.android.bundle", 17 | * 18 | * // the entry file for bundle generation 19 | * entryFile: "index.android.js", 20 | * 21 | * // whether to bundle JS and assets in debug mode 22 | * bundleInDebug: false, 23 | * 24 | * // whether to bundle JS and assets in release mode 25 | * bundleInRelease: true, 26 | * 27 | * // whether to bundle JS and assets in another build variant (if configured). 28 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 29 | * // The configuration property can be in the following formats 30 | * // 'bundleIn${productFlavor}${buildType}' 31 | * // 'bundleIn${buildType}' 32 | * // bundleInFreeDebug: true, 33 | * // bundleInPaidRelease: true, 34 | * // bundleInBeta: true, 35 | * 36 | * // whether to disable dev mode in custom build variants (by default only disabled in release) 37 | * // for example: to disable dev mode in the staging build type (if configured) 38 | * devDisabledInStaging: true, 39 | * // The configuration property can be in the following formats 40 | * // 'devDisabledIn${productFlavor}${buildType}' 41 | * // 'devDisabledIn${buildType}' 42 | * 43 | * // the root of your project, i.e. where "package.json" lives 44 | * root: "../../", 45 | * 46 | * // where to put the JS bundle asset in debug mode 47 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 48 | * 49 | * // where to put the JS bundle asset in release mode 50 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 51 | * 52 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 53 | * // require('./image.png')), in debug mode 54 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 55 | * 56 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 57 | * // require('./image.png')), in release mode 58 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 59 | * 60 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 61 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 62 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 63 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 64 | * // for example, you might want to remove it from here. 65 | * inputExcludes: ["android/**", "ios/**"], 66 | * 67 | * // override which node gets called and with what additional arguments 68 | * nodeExecutableAndArgs: ["node"], 69 | * 70 | * // supply additional arguments to the packager 71 | * extraPackagerArgs: [] 72 | * ] 73 | */ 74 | 75 | project.ext.react = [ 76 | entryFile: "index.js" 77 | ] 78 | 79 | apply from: "../../node_modules/react-native/react.gradle" 80 | 81 | /** 82 | * Set this to true to create two separate APKs instead of one: 83 | * - An APK that only works on ARM devices 84 | * - An APK that only works on x86 devices 85 | * The advantage is the size of the APK is reduced by about 4MB. 86 | * Upload all the APKs to the Play Store and people will download 87 | * the correct one based on the CPU architecture of their device. 88 | */ 89 | def enableSeparateBuildPerCPUArchitecture = false 90 | 91 | /** 92 | * Run Proguard to shrink the Java bytecode in release builds. 93 | */ 94 | def enableProguardInReleaseBuilds = false 95 | 96 | android { 97 | compileSdkVersion rootProject.ext.compileSdkVersion 98 | buildToolsVersion rootProject.ext.buildToolsVersion 99 | 100 | defaultConfig { 101 | applicationId "com.reactnativechatimageaudio" 102 | minSdkVersion rootProject.ext.minSdkVersion 103 | targetSdkVersion rootProject.ext.targetSdkVersion 104 | versionCode 1 105 | versionName "1.0" 106 | ndk { 107 | abiFilters "armeabi-v7a", "x86" 108 | } 109 | } 110 | splits { 111 | abi { 112 | reset() 113 | enable enableSeparateBuildPerCPUArchitecture 114 | universalApk false // If true, also generate a universal APK 115 | include "armeabi-v7a", "x86" 116 | } 117 | } 118 | buildTypes { 119 | release { 120 | minifyEnabled enableProguardInReleaseBuilds 121 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 122 | } 123 | } 124 | // applicationVariants are e.g. debug, release 125 | applicationVariants.all { variant -> 126 | variant.outputs.each { output -> 127 | // For each separate APK per architecture, set a unique version code as described here: 128 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 129 | def versionCodes = ["armeabi-v7a":1, "x86":2] 130 | def abi = output.getFilter(OutputFile.ABI) 131 | if (abi != null) { // null for the universal-debug, universal-release variants 132 | output.versionCodeOverride = 133 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 134 | } 135 | } 136 | } 137 | } 138 | 139 | dependencies { 140 | compile project(':react-native-vector-icons') 141 | compile project(':react-native-sound') 142 | compile project(':react-native-image-picker') 143 | compile project(':react-native-audio') 144 | compile fileTree(dir: "libs", include: ["*.jar"]) 145 | compile "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}" 146 | compile "com.facebook.react:react-native:+" // From node_modules 147 | } 148 | 149 | // Run this once to be able to run the application with BUCK 150 | // puts all compile dependencies into folder libs for BUCK to use 151 | task copyDownloadableDepsToLibs(type: Copy) { 152 | from configurations.compile 153 | into 'libs' 154 | } 155 | -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liplylie/ReactNativeChatImageAudio/27446d5d25e5f628a28384bde3d140e5a128e028/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liplylie/ReactNativeChatImageAudio/27446d5d25e5f628a28384bde3d140e5a128e028/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liplylie/ReactNativeChatImageAudio/27446d5d25e5f628a28384bde3d140e5a128e028/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liplylie/ReactNativeChatImageAudio/27446d5d25e5f628a28384bde3d140e5a128e028/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liplylie/ReactNativeChatImageAudio/27446d5d25e5f628a28384bde3d140e5a128e028/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liplylie/ReactNativeChatImageAudio/27446d5d25e5f628a28384bde3d140e5a128e028/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liplylie/ReactNativeChatImageAudio/27446d5d25e5f628a28384bde3d140e5a128e028/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liplylie/ReactNativeChatImageAudio/27446d5d25e5f628a28384bde3d140e5a128e028/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liplylie/ReactNativeChatImageAudio/27446d5d25e5f628a28384bde3d140e5a128e028/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liplylie/ReactNativeChatImageAudio/27446d5d25e5f628a28384bde3d140e5a128e028/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liplylie/ReactNativeChatImageAudio/27446d5d25e5f628a28384bde3d140e5a128e028/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liplylie/ReactNativeChatImageAudio/27446d5d25e5f628a28384bde3d140e5a128e028/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liplylie/ReactNativeChatImageAudio/27446d5d25e5f628a28384bde3d140e5a128e028/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liplylie/ReactNativeChatImageAudio/27446d5d25e5f628a28384bde3d140e5a128e028/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativechatimageaudio/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.reactnativechatimageaudio; 2 | 3 | import com.facebook.react.ReactActivity; 4 | 5 | public class MainActivity extends ReactActivity { 6 | 7 | /** 8 | * Returns the name of the main component registered from JavaScript. 9 | * This is used to schedule rendering of the component. 10 | */ 11 | @Override 12 | protected String getMainComponentName() { 13 | return "reactNativeChatImageAudio"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativechatimageaudio/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.reactnativechatimageaudio; 2 | 3 | import android.app.Application; 4 | 5 | import com.facebook.react.ReactApplication; 6 | import com.oblador.vectoricons.VectorIconsPackage; 7 | import com.zmxv.RNSound.RNSoundPackage; 8 | import com.imagepicker.ImagePickerPackage; 9 | import com.rnim.rn.audio.ReactNativeAudioPackage; 10 | import com.facebook.react.ReactNativeHost; 11 | import com.facebook.react.ReactPackage; 12 | import com.facebook.react.shell.MainReactPackage; 13 | import com.facebook.soloader.SoLoader; 14 | 15 | import java.util.Arrays; 16 | import java.util.List; 17 | 18 | public class MainApplication extends Application implements ReactApplication { 19 | 20 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 21 | @Override 22 | public boolean getUseDeveloperSupport() { 23 | return BuildConfig.DEBUG; 24 | } 25 | 26 | @Override 27 | protected List getPackages() { 28 | return Arrays.asList( 29 | new MainReactPackage(), 30 | new VectorIconsPackage(), 31 | new RNSoundPackage(), 32 | new ImagePickerPackage(), 33 | new ReactNativeAudioPackage() 34 | ); 35 | } 36 | 37 | @Override 38 | protected String getJSMainModuleName() { 39 | return "index"; 40 | } 41 | }; 42 | 43 | @Override 44 | public ReactNativeHost getReactNativeHost() { 45 | return mReactNativeHost; 46 | } 47 | 48 | @Override 49 | public void onCreate() { 50 | super.onCreate(); 51 | SoLoader.init(this, /* native exopackage */ false); 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liplylie/ReactNativeChatImageAudio/27446d5d25e5f628a28384bde3d140e5a128e028/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liplylie/ReactNativeChatImageAudio/27446d5d25e5f628a28384bde3d140e5a128e028/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liplylie/ReactNativeChatImageAudio/27446d5d25e5f628a28384bde3d140e5a128e028/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liplylie/ReactNativeChatImageAudio/27446d5d25e5f628a28384bde3d140e5a128e028/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liplylie/ReactNativeChatImageAudio/27446d5d25e5f628a28384bde3d140e5a128e028/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liplylie/ReactNativeChatImageAudio/27446d5d25e5f628a28384bde3d140e5a128e028/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liplylie/ReactNativeChatImageAudio/27446d5d25e5f628a28384bde3d140e5a128e028/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liplylie/ReactNativeChatImageAudio/27446d5d25e5f628a28384bde3d140e5a128e028/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liplylie/ReactNativeChatImageAudio/27446d5d25e5f628a28384bde3d140e5a128e028/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liplylie/ReactNativeChatImageAudio/27446d5d25e5f628a28384bde3d140e5a128e028/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | reactNativeChatImageAudio 3 | 4 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | maven { 7 | url 'https://maven.google.com/' 8 | name 'Google' 9 | } 10 | } 11 | dependencies { 12 | classpath 'com.android.tools.build:gradle:2.3.3' 13 | 14 | // NOTE: Do not place your application dependencies here; they belong 15 | // in the individual module build.gradle files 16 | } 17 | } 18 | 19 | allprojects { 20 | repositories { 21 | mavenLocal() 22 | jcenter() 23 | maven { 24 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 25 | url "$rootDir/../node_modules/react-native/android" 26 | } 27 | maven { 28 | url 'https://maven.google.com/' 29 | name 'Google' 30 | } 31 | } 32 | } 33 | 34 | ext { 35 | buildToolsVersion = "26.0.3" 36 | minSdkVersion = 16 37 | compileSdkVersion = 26 38 | targetSdkVersion = 26 39 | supportLibVersion = "26.1.0" 40 | } 41 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | 20 | android.useDeprecatedNdk=true 21 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liplylie/ReactNativeChatImageAudio/27446d5d25e5f628a28384bde3d140e5a128e028/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.5.1-all.zip 6 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # For Cygwin, ensure paths are in UNIX format before anything is touched. 46 | if $cygwin ; then 47 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 48 | fi 49 | 50 | # Attempt to set APP_HOME 51 | # Resolve links: $0 may be a link 52 | PRG="$0" 53 | # Need this for relative symlinks. 54 | while [ -h "$PRG" ] ; do 55 | ls=`ls -ld "$PRG"` 56 | link=`expr "$ls" : '.*-> \(.*\)$'` 57 | if expr "$link" : '/.*' > /dev/null; then 58 | PRG="$link" 59 | else 60 | PRG=`dirname "$PRG"`"/$link" 61 | fi 62 | done 63 | SAVED="`pwd`" 64 | cd "`dirname \"$PRG\"`/" >&- 65 | APP_HOME="`pwd -P`" 66 | cd "$SAVED" >&- 67 | 68 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 69 | 70 | # Determine the Java command to use to start the JVM. 71 | if [ -n "$JAVA_HOME" ] ; then 72 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 73 | # IBM's JDK on AIX uses strange locations for the executables 74 | JAVACMD="$JAVA_HOME/jre/sh/java" 75 | else 76 | JAVACMD="$JAVA_HOME/bin/java" 77 | fi 78 | if [ ! -x "$JAVACMD" ] ; then 79 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 80 | 81 | Please set the JAVA_HOME variable in your environment to match the 82 | location of your Java installation." 83 | fi 84 | else 85 | JAVACMD="java" 86 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 87 | 88 | Please set the JAVA_HOME variable in your environment to match the 89 | location of your Java installation." 90 | fi 91 | 92 | # Increase the maximum file descriptors if we can. 93 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 94 | MAX_FD_LIMIT=`ulimit -H -n` 95 | if [ $? -eq 0 ] ; then 96 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 97 | MAX_FD="$MAX_FD_LIMIT" 98 | fi 99 | ulimit -n $MAX_FD 100 | if [ $? -ne 0 ] ; then 101 | warn "Could not set maximum file descriptor limit: $MAX_FD" 102 | fi 103 | else 104 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 105 | fi 106 | fi 107 | 108 | # For Darwin, add options to specify how the application appears in the dock 109 | if $darwin; then 110 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 111 | fi 112 | 113 | # For Cygwin, switch paths to Windows format before running java 114 | if $cygwin ; then 115 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 116 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 158 | function splitJvmOpts() { 159 | JVM_OPTS=("$@") 160 | } 161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 163 | 164 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 165 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'reactNativeChatImageAudio' 2 | include ':react-native-vector-icons' 3 | project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android') 4 | include ':react-native-sound' 5 | project(':react-native-sound').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-sound/android') 6 | include ':react-native-image-picker' 7 | project(':react-native-image-picker').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-image-picker/android') 8 | include ':react-native-audio' 9 | project(':react-native-audio').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-audio/android') 10 | 11 | include ':app' 12 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "reactNativeChatImageAudio", 3 | "displayName": "reactNativeChatImageAudio" 4 | } -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /** @format */ 2 | 3 | import {AppRegistry} from 'react-native'; 4 | import App from './App'; 5 | import {name as appName} from './app.json'; 6 | 7 | AppRegistry.registerComponent(appName, () => App); 8 | -------------------------------------------------------------------------------- /ios/reactNativeChatImageAudio-tvOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UIViewControllerBasedStatusBarAppearance 38 | 39 | NSLocationWhenInUseUsageDescription 40 | 41 | NSAppTransportSecurity 42 | 43 | 44 | NSExceptionDomains 45 | 46 | localhost 47 | 48 | NSExceptionAllowsInsecureHTTPLoads 49 | 50 | 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /ios/reactNativeChatImageAudio-tvOSTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/reactNativeChatImageAudio.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | /* Begin PBXBuildFile section */ 9 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; }; 10 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; }; 11 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; }; 12 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; }; 13 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; 14 | 00E356F31AD99517003FC87E /* reactNativeChatImageAudioTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* reactNativeChatImageAudioTests.m */; }; 15 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 16 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 17 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 18 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 19 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 20 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 21 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 22 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 23 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 24 | 1B1F285153B6459B98FB16AF /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B19E471BDF084ABBB6F2BE33 /* Feather.ttf */; }; 25 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 26 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 27 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 28 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 29 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; }; 30 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; }; 31 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; }; 32 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; }; 33 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; }; 34 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; }; 35 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; }; 36 | 2DCD954D1E0B4F2C00145EB5 /* reactNativeChatImageAudioTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* reactNativeChatImageAudioTests.m */; }; 37 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 38 | 47F782E31F85494BAFED4D31 /* FontAwesome5_Solid.ttf in Resources */ = {isa = PBXBuildFile; fileRef = BA1F7B872777431B80CA4995 /* FontAwesome5_Solid.ttf */; }; 39 | 4D07F754B8254C0695BA1078 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FE1283F06D9943A99E17ACB5 /* SimpleLineIcons.ttf */; }; 40 | 5A907D19B1054487B7DCA56C /* libRNImagePicker.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6520F8DA0E79452E97AA1F7B /* libRNImagePicker.a */; }; 41 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 42 | 6CAF6895A29A4E8B88E63AEE /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C3D76E196A524F48BBBD14AE /* Zocial.ttf */; }; 43 | 6EA601C4A6DD4A04B5E40CA8 /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6196C797DBB74660BA5C8B63 /* Octicons.ttf */; }; 44 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 45 | 83BF566B54C64384AE09ECB9 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C9805AE2B34F4F358ECEAAB8 /* FontAwesome.ttf */; }; 46 | 93F47AD6AF76407C95693B0C /* libRNAudio.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 15706234F26D47A8ABCCFD97 /* libRNAudio.a */; }; 47 | 97C131C476AB45659878DBF5 /* FontAwesome5_Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 37F14407F02B408B824A7A41 /* FontAwesome5_Regular.ttf */; }; 48 | AA8B18DAB0BE4C6D848B936F /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = AEF914B1C3464ADBB6BDDBF7 /* Entypo.ttf */; }; 49 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; }; 50 | BCC3A8CB3D95425FB0F592E9 /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 769AC4369F344D28BDEB081C /* Foundation.ttf */; }; 51 | CAF2B94EB9964B529E6F084F /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = BA7BE17BA8274CA3B0EBD893 /* MaterialCommunityIcons.ttf */; }; 52 | D5F0DF4950EE4F9CA313AD8D /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C7B90AE3540648D386DB5002 /* libRNVectorIcons.a */; }; 53 | D727281C6E75437A87064E28 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 98BA7BCE05CA4C13A7A6789F /* EvilIcons.ttf */; }; 54 | DA519FD8E3194EE6B176BA16 /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 8B80A5D943E84AF8AF07835D /* MaterialIcons.ttf */; }; 55 | DB10B51566294E65A99E521F /* libRNSound.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4F42AA5BDC9246E19951A808 /* libRNSound.a */; }; 56 | EAB327A587BF4A878C191088 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C18693663F0F417FA7ABF9F8 /* Ionicons.ttf */; }; 57 | F922ADDD0AEB464FB7F9DD55 /* FontAwesome5_Brands.ttf in Resources */ = {isa = PBXBuildFile; fileRef = CFE72B0EAC334463A8AC1837 /* FontAwesome5_Brands.ttf */; }; 58 | /* End PBXBuildFile section */ 59 | 60 | /* Begin PBXContainerItemProxy section */ 61 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 62 | isa = PBXContainerItemProxy; 63 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 64 | proxyType = 2; 65 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 66 | remoteInfo = RCTActionSheet; 67 | }; 68 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 69 | isa = PBXContainerItemProxy; 70 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 71 | proxyType = 2; 72 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 73 | remoteInfo = RCTGeolocation; 74 | }; 75 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 76 | isa = PBXContainerItemProxy; 77 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 78 | proxyType = 2; 79 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 80 | remoteInfo = RCTImage; 81 | }; 82 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 83 | isa = PBXContainerItemProxy; 84 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 85 | proxyType = 2; 86 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 87 | remoteInfo = RCTNetwork; 88 | }; 89 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 90 | isa = PBXContainerItemProxy; 91 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 92 | proxyType = 2; 93 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 94 | remoteInfo = RCTVibration; 95 | }; 96 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 97 | isa = PBXContainerItemProxy; 98 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 99 | proxyType = 1; 100 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 101 | remoteInfo = reactNativeChatImageAudio; 102 | }; 103 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 104 | isa = PBXContainerItemProxy; 105 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 106 | proxyType = 2; 107 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 108 | remoteInfo = RCTSettings; 109 | }; 110 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 111 | isa = PBXContainerItemProxy; 112 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 113 | proxyType = 2; 114 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 115 | remoteInfo = RCTWebSocket; 116 | }; 117 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 118 | isa = PBXContainerItemProxy; 119 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 120 | proxyType = 2; 121 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 122 | remoteInfo = React; 123 | }; 124 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 125 | isa = PBXContainerItemProxy; 126 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 127 | proxyType = 1; 128 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 129 | remoteInfo = "reactNativeChatImageAudio-tvOS"; 130 | }; 131 | 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 132 | isa = PBXContainerItemProxy; 133 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 134 | proxyType = 2; 135 | remoteGlobalIDString = ADD01A681E09402E00F6D226; 136 | remoteInfo = "RCTBlob-tvOS"; 137 | }; 138 | 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 139 | isa = PBXContainerItemProxy; 140 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 141 | proxyType = 2; 142 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32; 143 | remoteInfo = fishhook; 144 | }; 145 | 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 146 | isa = PBXContainerItemProxy; 147 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 148 | proxyType = 2; 149 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32; 150 | remoteInfo = "fishhook-tvOS"; 151 | }; 152 | 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = { 153 | isa = PBXContainerItemProxy; 154 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 155 | proxyType = 2; 156 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5; 157 | remoteInfo = jsinspector; 158 | }; 159 | 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = { 160 | isa = PBXContainerItemProxy; 161 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 162 | proxyType = 2; 163 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5; 164 | remoteInfo = "jsinspector-tvOS"; 165 | }; 166 | 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = { 167 | isa = PBXContainerItemProxy; 168 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 169 | proxyType = 2; 170 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7; 171 | remoteInfo = "third-party"; 172 | }; 173 | 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = { 174 | isa = PBXContainerItemProxy; 175 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 176 | proxyType = 2; 177 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8; 178 | remoteInfo = "third-party-tvOS"; 179 | }; 180 | 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = { 181 | isa = PBXContainerItemProxy; 182 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 183 | proxyType = 2; 184 | remoteGlobalIDString = 139D7E881E25C6D100323FB7; 185 | remoteInfo = "double-conversion"; 186 | }; 187 | 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = { 188 | isa = PBXContainerItemProxy; 189 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 190 | proxyType = 2; 191 | remoteGlobalIDString = 3D383D621EBD27B9005632C8; 192 | remoteInfo = "double-conversion-tvOS"; 193 | }; 194 | 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */ = { 195 | isa = PBXContainerItemProxy; 196 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 197 | proxyType = 2; 198 | remoteGlobalIDString = 9936F3131F5F2E4B0010BF04; 199 | remoteInfo = privatedata; 200 | }; 201 | 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */ = { 202 | isa = PBXContainerItemProxy; 203 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 204 | proxyType = 2; 205 | remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04; 206 | remoteInfo = "privatedata-tvOS"; 207 | }; 208 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 209 | isa = PBXContainerItemProxy; 210 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 211 | proxyType = 2; 212 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 213 | remoteInfo = "RCTImage-tvOS"; 214 | }; 215 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 216 | isa = PBXContainerItemProxy; 217 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 218 | proxyType = 2; 219 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 220 | remoteInfo = "RCTLinking-tvOS"; 221 | }; 222 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 223 | isa = PBXContainerItemProxy; 224 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 225 | proxyType = 2; 226 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 227 | remoteInfo = "RCTNetwork-tvOS"; 228 | }; 229 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 230 | isa = PBXContainerItemProxy; 231 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 232 | proxyType = 2; 233 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 234 | remoteInfo = "RCTSettings-tvOS"; 235 | }; 236 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 237 | isa = PBXContainerItemProxy; 238 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 239 | proxyType = 2; 240 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 241 | remoteInfo = "RCTText-tvOS"; 242 | }; 243 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 244 | isa = PBXContainerItemProxy; 245 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 246 | proxyType = 2; 247 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 248 | remoteInfo = "RCTWebSocket-tvOS"; 249 | }; 250 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 251 | isa = PBXContainerItemProxy; 252 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 253 | proxyType = 2; 254 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 255 | remoteInfo = "React-tvOS"; 256 | }; 257 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 258 | isa = PBXContainerItemProxy; 259 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 260 | proxyType = 2; 261 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 262 | remoteInfo = yoga; 263 | }; 264 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 265 | isa = PBXContainerItemProxy; 266 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 267 | proxyType = 2; 268 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 269 | remoteInfo = "yoga-tvOS"; 270 | }; 271 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 272 | isa = PBXContainerItemProxy; 273 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 274 | proxyType = 2; 275 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 276 | remoteInfo = cxxreact; 277 | }; 278 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 279 | isa = PBXContainerItemProxy; 280 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 281 | proxyType = 2; 282 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 283 | remoteInfo = "cxxreact-tvOS"; 284 | }; 285 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 286 | isa = PBXContainerItemProxy; 287 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 288 | proxyType = 2; 289 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 290 | remoteInfo = jschelpers; 291 | }; 292 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 293 | isa = PBXContainerItemProxy; 294 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 295 | proxyType = 2; 296 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 297 | remoteInfo = "jschelpers-tvOS"; 298 | }; 299 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 300 | isa = PBXContainerItemProxy; 301 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 302 | proxyType = 2; 303 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 304 | remoteInfo = RCTAnimation; 305 | }; 306 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 307 | isa = PBXContainerItemProxy; 308 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 309 | proxyType = 2; 310 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 311 | remoteInfo = "RCTAnimation-tvOS"; 312 | }; 313 | 6F6D703E212A9D6B009E2D8A /* PBXContainerItemProxy */ = { 314 | isa = PBXContainerItemProxy; 315 | containerPortal = 9B4107B4A8384C0CB2438AC6 /* RNAudio.xcodeproj */; 316 | proxyType = 2; 317 | remoteGlobalIDString = 42F559BA1CFC90C400DC3F84; 318 | remoteInfo = RNAudio; 319 | }; 320 | 6F6D7043212A9D6B009E2D8A /* PBXContainerItemProxy */ = { 321 | isa = PBXContainerItemProxy; 322 | containerPortal = 9B1E4527EA274523B420913D /* RNImagePicker.xcodeproj */; 323 | proxyType = 2; 324 | remoteGlobalIDString = 014A3B5C1C6CF33500B6D375; 325 | remoteInfo = RNImagePicker; 326 | }; 327 | 6F6D7048212A9D6B009E2D8A /* PBXContainerItemProxy */ = { 328 | isa = PBXContainerItemProxy; 329 | containerPortal = D6C5064719CF4D34AC4CB5ED /* RNSound.xcodeproj */; 330 | proxyType = 2; 331 | remoteGlobalIDString = 19825A1E1BD4A89800EE0337; 332 | remoteInfo = RNSound; 333 | }; 334 | 6F6D704D212A9D6B009E2D8A /* PBXContainerItemProxy */ = { 335 | isa = PBXContainerItemProxy; 336 | containerPortal = D301FA3586924C49804EC0A0 /* RNVectorIcons.xcodeproj */; 337 | proxyType = 2; 338 | remoteGlobalIDString = 5DBEB1501B18CEA900B34395; 339 | remoteInfo = RNVectorIcons; 340 | }; 341 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 342 | isa = PBXContainerItemProxy; 343 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 344 | proxyType = 2; 345 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 346 | remoteInfo = RCTLinking; 347 | }; 348 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 349 | isa = PBXContainerItemProxy; 350 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 351 | proxyType = 2; 352 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 353 | remoteInfo = RCTText; 354 | }; 355 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = { 356 | isa = PBXContainerItemProxy; 357 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 358 | proxyType = 2; 359 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814; 360 | remoteInfo = RCTBlob; 361 | }; 362 | /* End PBXContainerItemProxy section */ 363 | 364 | /* Begin PBXFileReference section */ 365 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 366 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 367 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 368 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 369 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 370 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 371 | 00E356EE1AD99517003FC87E /* reactNativeChatImageAudioTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = reactNativeChatImageAudioTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 372 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 373 | 00E356F21AD99517003FC87E /* reactNativeChatImageAudioTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = reactNativeChatImageAudioTests.m; sourceTree = ""; }; 374 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 375 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 376 | 13B07F961A680F5B00A75B9A /* reactNativeChatImageAudio.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = reactNativeChatImageAudio.app; sourceTree = BUILT_PRODUCTS_DIR; }; 377 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = reactNativeChatImageAudio/AppDelegate.h; sourceTree = ""; }; 378 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = reactNativeChatImageAudio/AppDelegate.m; sourceTree = ""; }; 379 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 380 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = reactNativeChatImageAudio/Images.xcassets; sourceTree = ""; }; 381 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = reactNativeChatImageAudio/Info.plist; sourceTree = ""; }; 382 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = reactNativeChatImageAudio/main.m; sourceTree = ""; }; 383 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 384 | 15706234F26D47A8ABCCFD97 /* libRNAudio.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNAudio.a; sourceTree = ""; }; 385 | 2D02E47B1E0B4A5D006451C7 /* reactNativeChatImageAudio-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "reactNativeChatImageAudio-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 386 | 2D02E4901E0B4A5D006451C7 /* reactNativeChatImageAudio-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "reactNativeChatImageAudio-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 387 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; 388 | 37F14407F02B408B824A7A41 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Regular.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf"; sourceTree = ""; }; 389 | 4F42AA5BDC9246E19951A808 /* libRNSound.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNSound.a; sourceTree = ""; }; 390 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 391 | 6196C797DBB74660BA5C8B63 /* Octicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Octicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"; sourceTree = ""; }; 392 | 6520F8DA0E79452E97AA1F7B /* libRNImagePicker.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNImagePicker.a; sourceTree = ""; }; 393 | 769AC4369F344D28BDEB081C /* Foundation.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Foundation.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"; sourceTree = ""; }; 394 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 395 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 396 | 8B80A5D943E84AF8AF07835D /* MaterialIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"; sourceTree = ""; }; 397 | 98BA7BCE05CA4C13A7A6789F /* EvilIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = EvilIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = ""; }; 398 | 9B1E4527EA274523B420913D /* RNImagePicker.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNImagePicker.xcodeproj; path = "../node_modules/react-native-image-picker/ios/RNImagePicker.xcodeproj"; sourceTree = ""; }; 399 | 9B4107B4A8384C0CB2438AC6 /* RNAudio.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNAudio.xcodeproj; path = "../node_modules/react-native-audio/ios/RNAudio.xcodeproj"; sourceTree = ""; }; 400 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; 401 | AEF914B1C3464ADBB6BDDBF7 /* Entypo.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Entypo.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = ""; }; 402 | B19E471BDF084ABBB6F2BE33 /* Feather.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Feather.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Feather.ttf"; sourceTree = ""; }; 403 | BA1F7B872777431B80CA4995 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Solid.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf"; sourceTree = ""; }; 404 | BA7BE17BA8274CA3B0EBD893 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialCommunityIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"; sourceTree = ""; }; 405 | C18693663F0F417FA7ABF9F8 /* Ionicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Ionicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = ""; }; 406 | C3D76E196A524F48BBBD14AE /* Zocial.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Zocial.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = ""; }; 407 | C7B90AE3540648D386DB5002 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNVectorIcons.a; sourceTree = ""; }; 408 | C9805AE2B34F4F358ECEAAB8 /* FontAwesome.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = ""; }; 409 | CFE72B0EAC334463A8AC1837 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Brands.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf"; sourceTree = ""; }; 410 | D301FA3586924C49804EC0A0 /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNVectorIcons.xcodeproj; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = ""; }; 411 | D6C5064719CF4D34AC4CB5ED /* RNSound.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNSound.xcodeproj; path = "../node_modules/react-native-sound/RNSound.xcodeproj"; sourceTree = ""; }; 412 | FE1283F06D9943A99E17ACB5 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = SimpleLineIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = ""; }; 413 | /* End PBXFileReference section */ 414 | 415 | /* Begin PBXFrameworksBuildPhase section */ 416 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 417 | isa = PBXFrameworksBuildPhase; 418 | buildActionMask = 2147483647; 419 | files = ( 420 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 421 | ); 422 | runOnlyForDeploymentPostprocessing = 0; 423 | }; 424 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 425 | isa = PBXFrameworksBuildPhase; 426 | buildActionMask = 2147483647; 427 | files = ( 428 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */, 429 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 430 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 431 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 432 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 433 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 434 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 435 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 436 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 437 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 438 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 439 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 440 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 441 | 93F47AD6AF76407C95693B0C /* libRNAudio.a in Frameworks */, 442 | 5A907D19B1054487B7DCA56C /* libRNImagePicker.a in Frameworks */, 443 | DB10B51566294E65A99E521F /* libRNSound.a in Frameworks */, 444 | D5F0DF4950EE4F9CA313AD8D /* libRNVectorIcons.a in Frameworks */, 445 | ); 446 | runOnlyForDeploymentPostprocessing = 0; 447 | }; 448 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 449 | isa = PBXFrameworksBuildPhase; 450 | buildActionMask = 2147483647; 451 | files = ( 452 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */, 453 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */, 454 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 455 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 456 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 457 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 458 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 459 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 460 | ); 461 | runOnlyForDeploymentPostprocessing = 0; 462 | }; 463 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 464 | isa = PBXFrameworksBuildPhase; 465 | buildActionMask = 2147483647; 466 | files = ( 467 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */, 468 | ); 469 | runOnlyForDeploymentPostprocessing = 0; 470 | }; 471 | /* End PBXFrameworksBuildPhase section */ 472 | 473 | /* Begin PBXGroup section */ 474 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 475 | isa = PBXGroup; 476 | children = ( 477 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 478 | ); 479 | name = Products; 480 | sourceTree = ""; 481 | }; 482 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 483 | isa = PBXGroup; 484 | children = ( 485 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 486 | ); 487 | name = Products; 488 | sourceTree = ""; 489 | }; 490 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 491 | isa = PBXGroup; 492 | children = ( 493 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 494 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 495 | ); 496 | name = Products; 497 | sourceTree = ""; 498 | }; 499 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 500 | isa = PBXGroup; 501 | children = ( 502 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 503 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 504 | ); 505 | name = Products; 506 | sourceTree = ""; 507 | }; 508 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 509 | isa = PBXGroup; 510 | children = ( 511 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 512 | ); 513 | name = Products; 514 | sourceTree = ""; 515 | }; 516 | 00E356EF1AD99517003FC87E /* reactNativeChatImageAudioTests */ = { 517 | isa = PBXGroup; 518 | children = ( 519 | 00E356F21AD99517003FC87E /* reactNativeChatImageAudioTests.m */, 520 | 00E356F01AD99517003FC87E /* Supporting Files */, 521 | ); 522 | path = reactNativeChatImageAudioTests; 523 | sourceTree = ""; 524 | }; 525 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 526 | isa = PBXGroup; 527 | children = ( 528 | 00E356F11AD99517003FC87E /* Info.plist */, 529 | ); 530 | name = "Supporting Files"; 531 | sourceTree = ""; 532 | }; 533 | 139105B71AF99BAD00B5F7CC /* Products */ = { 534 | isa = PBXGroup; 535 | children = ( 536 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 537 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 538 | ); 539 | name = Products; 540 | sourceTree = ""; 541 | }; 542 | 139FDEE71B06529A00C62182 /* Products */ = { 543 | isa = PBXGroup; 544 | children = ( 545 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 546 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 547 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */, 548 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */, 549 | ); 550 | name = Products; 551 | sourceTree = ""; 552 | }; 553 | 13B07FAE1A68108700A75B9A /* reactNativeChatImageAudio */ = { 554 | isa = PBXGroup; 555 | children = ( 556 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 557 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 558 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 559 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 560 | 13B07FB61A68108700A75B9A /* Info.plist */, 561 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 562 | 13B07FB71A68108700A75B9A /* main.m */, 563 | ); 564 | name = reactNativeChatImageAudio; 565 | sourceTree = ""; 566 | }; 567 | 146834001AC3E56700842450 /* Products */ = { 568 | isa = PBXGroup; 569 | children = ( 570 | 146834041AC3E56700842450 /* libReact.a */, 571 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 572 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 573 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 574 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 575 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 576 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 577 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 578 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */, 579 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */, 580 | 2DF0FFE32056DD460020B375 /* libthird-party.a */, 581 | 2DF0FFE52056DD460020B375 /* libthird-party.a */, 582 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */, 583 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */, 584 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */, 585 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */, 586 | ); 587 | name = Products; 588 | sourceTree = ""; 589 | }; 590 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 591 | isa = PBXGroup; 592 | children = ( 593 | 2D16E6891FA4F8E400B85C8A /* libReact.a */, 594 | ); 595 | name = Frameworks; 596 | sourceTree = ""; 597 | }; 598 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 599 | isa = PBXGroup; 600 | children = ( 601 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 602 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 603 | ); 604 | name = Products; 605 | sourceTree = ""; 606 | }; 607 | 6F6D7015212A9D69009E2D8A /* Recovered References */ = { 608 | isa = PBXGroup; 609 | children = ( 610 | 15706234F26D47A8ABCCFD97 /* libRNAudio.a */, 611 | 6520F8DA0E79452E97AA1F7B /* libRNImagePicker.a */, 612 | 4F42AA5BDC9246E19951A808 /* libRNSound.a */, 613 | C7B90AE3540648D386DB5002 /* libRNVectorIcons.a */, 614 | ); 615 | name = "Recovered References"; 616 | sourceTree = ""; 617 | }; 618 | 6F6D703B212A9D6B009E2D8A /* Products */ = { 619 | isa = PBXGroup; 620 | children = ( 621 | 6F6D703F212A9D6B009E2D8A /* libRNAudio.a */, 622 | ); 623 | name = Products; 624 | sourceTree = ""; 625 | }; 626 | 6F6D7040212A9D6B009E2D8A /* Products */ = { 627 | isa = PBXGroup; 628 | children = ( 629 | 6F6D7044212A9D6B009E2D8A /* libRNImagePicker.a */, 630 | ); 631 | name = Products; 632 | sourceTree = ""; 633 | }; 634 | 6F6D7045212A9D6B009E2D8A /* Products */ = { 635 | isa = PBXGroup; 636 | children = ( 637 | 6F6D7049212A9D6B009E2D8A /* libRNSound.a */, 638 | ); 639 | name = Products; 640 | sourceTree = ""; 641 | }; 642 | 6F6D704A212A9D6B009E2D8A /* Products */ = { 643 | isa = PBXGroup; 644 | children = ( 645 | 6F6D704E212A9D6B009E2D8A /* libRNVectorIcons.a */, 646 | ); 647 | name = Products; 648 | sourceTree = ""; 649 | }; 650 | 78C398B11ACF4ADC00677621 /* Products */ = { 651 | isa = PBXGroup; 652 | children = ( 653 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 654 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 655 | ); 656 | name = Products; 657 | sourceTree = ""; 658 | }; 659 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 660 | isa = PBXGroup; 661 | children = ( 662 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 663 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 664 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 665 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */, 666 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 667 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 668 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 669 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 670 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 671 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 672 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 673 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 674 | 9B4107B4A8384C0CB2438AC6 /* RNAudio.xcodeproj */, 675 | 9B1E4527EA274523B420913D /* RNImagePicker.xcodeproj */, 676 | D6C5064719CF4D34AC4CB5ED /* RNSound.xcodeproj */, 677 | D301FA3586924C49804EC0A0 /* RNVectorIcons.xcodeproj */, 678 | ); 679 | name = Libraries; 680 | sourceTree = ""; 681 | }; 682 | 832341B11AAA6A8300B99B32 /* Products */ = { 683 | isa = PBXGroup; 684 | children = ( 685 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 686 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 687 | ); 688 | name = Products; 689 | sourceTree = ""; 690 | }; 691 | 83CBB9F61A601CBA00E9B192 = { 692 | isa = PBXGroup; 693 | children = ( 694 | 13B07FAE1A68108700A75B9A /* reactNativeChatImageAudio */, 695 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 696 | 00E356EF1AD99517003FC87E /* reactNativeChatImageAudioTests */, 697 | 83CBBA001A601CBA00E9B192 /* Products */, 698 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 699 | B04A66E279EB4E8D9A97F89C /* Resources */, 700 | 6F6D7015212A9D69009E2D8A /* Recovered References */, 701 | ); 702 | indentWidth = 2; 703 | sourceTree = ""; 704 | tabWidth = 2; 705 | usesTabs = 0; 706 | }; 707 | 83CBBA001A601CBA00E9B192 /* Products */ = { 708 | isa = PBXGroup; 709 | children = ( 710 | 13B07F961A680F5B00A75B9A /* reactNativeChatImageAudio.app */, 711 | 00E356EE1AD99517003FC87E /* reactNativeChatImageAudioTests.xctest */, 712 | 2D02E47B1E0B4A5D006451C7 /* reactNativeChatImageAudio-tvOS.app */, 713 | 2D02E4901E0B4A5D006451C7 /* reactNativeChatImageAudio-tvOSTests.xctest */, 714 | ); 715 | name = Products; 716 | sourceTree = ""; 717 | }; 718 | ADBDB9201DFEBF0600ED6528 /* Products */ = { 719 | isa = PBXGroup; 720 | children = ( 721 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, 722 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */, 723 | ); 724 | name = Products; 725 | sourceTree = ""; 726 | }; 727 | B04A66E279EB4E8D9A97F89C /* Resources */ = { 728 | isa = PBXGroup; 729 | children = ( 730 | AEF914B1C3464ADBB6BDDBF7 /* Entypo.ttf */, 731 | 98BA7BCE05CA4C13A7A6789F /* EvilIcons.ttf */, 732 | B19E471BDF084ABBB6F2BE33 /* Feather.ttf */, 733 | C9805AE2B34F4F358ECEAAB8 /* FontAwesome.ttf */, 734 | CFE72B0EAC334463A8AC1837 /* FontAwesome5_Brands.ttf */, 735 | 37F14407F02B408B824A7A41 /* FontAwesome5_Regular.ttf */, 736 | BA1F7B872777431B80CA4995 /* FontAwesome5_Solid.ttf */, 737 | 769AC4369F344D28BDEB081C /* Foundation.ttf */, 738 | C18693663F0F417FA7ABF9F8 /* Ionicons.ttf */, 739 | BA7BE17BA8274CA3B0EBD893 /* MaterialCommunityIcons.ttf */, 740 | 8B80A5D943E84AF8AF07835D /* MaterialIcons.ttf */, 741 | 6196C797DBB74660BA5C8B63 /* Octicons.ttf */, 742 | FE1283F06D9943A99E17ACB5 /* SimpleLineIcons.ttf */, 743 | C3D76E196A524F48BBBD14AE /* Zocial.ttf */, 744 | ); 745 | name = Resources; 746 | sourceTree = ""; 747 | }; 748 | /* End PBXGroup section */ 749 | 750 | /* Begin PBXNativeTarget section */ 751 | 00E356ED1AD99517003FC87E /* reactNativeChatImageAudioTests */ = { 752 | isa = PBXNativeTarget; 753 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "reactNativeChatImageAudioTests" */; 754 | buildPhases = ( 755 | 00E356EA1AD99517003FC87E /* Sources */, 756 | 00E356EB1AD99517003FC87E /* Frameworks */, 757 | 00E356EC1AD99517003FC87E /* Resources */, 758 | ); 759 | buildRules = ( 760 | ); 761 | dependencies = ( 762 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 763 | ); 764 | name = reactNativeChatImageAudioTests; 765 | productName = reactNativeChatImageAudioTests; 766 | productReference = 00E356EE1AD99517003FC87E /* reactNativeChatImageAudioTests.xctest */; 767 | productType = "com.apple.product-type.bundle.unit-test"; 768 | }; 769 | 13B07F861A680F5B00A75B9A /* reactNativeChatImageAudio */ = { 770 | isa = PBXNativeTarget; 771 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "reactNativeChatImageAudio" */; 772 | buildPhases = ( 773 | 13B07F871A680F5B00A75B9A /* Sources */, 774 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 775 | 13B07F8E1A680F5B00A75B9A /* Resources */, 776 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 777 | ); 778 | buildRules = ( 779 | ); 780 | dependencies = ( 781 | ); 782 | name = reactNativeChatImageAudio; 783 | productName = "Hello World"; 784 | productReference = 13B07F961A680F5B00A75B9A /* reactNativeChatImageAudio.app */; 785 | productType = "com.apple.product-type.application"; 786 | }; 787 | 2D02E47A1E0B4A5D006451C7 /* reactNativeChatImageAudio-tvOS */ = { 788 | isa = PBXNativeTarget; 789 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "reactNativeChatImageAudio-tvOS" */; 790 | buildPhases = ( 791 | 2D02E4771E0B4A5D006451C7 /* Sources */, 792 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 793 | 2D02E4791E0B4A5D006451C7 /* Resources */, 794 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 795 | ); 796 | buildRules = ( 797 | ); 798 | dependencies = ( 799 | ); 800 | name = "reactNativeChatImageAudio-tvOS"; 801 | productName = "reactNativeChatImageAudio-tvOS"; 802 | productReference = 2D02E47B1E0B4A5D006451C7 /* reactNativeChatImageAudio-tvOS.app */; 803 | productType = "com.apple.product-type.application"; 804 | }; 805 | 2D02E48F1E0B4A5D006451C7 /* reactNativeChatImageAudio-tvOSTests */ = { 806 | isa = PBXNativeTarget; 807 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "reactNativeChatImageAudio-tvOSTests" */; 808 | buildPhases = ( 809 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 810 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 811 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 812 | ); 813 | buildRules = ( 814 | ); 815 | dependencies = ( 816 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 817 | ); 818 | name = "reactNativeChatImageAudio-tvOSTests"; 819 | productName = "reactNativeChatImageAudio-tvOSTests"; 820 | productReference = 2D02E4901E0B4A5D006451C7 /* reactNativeChatImageAudio-tvOSTests.xctest */; 821 | productType = "com.apple.product-type.bundle.unit-test"; 822 | }; 823 | /* End PBXNativeTarget section */ 824 | 825 | /* Begin PBXProject section */ 826 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 827 | isa = PBXProject; 828 | attributes = { 829 | LastUpgradeCheck = 610; 830 | ORGANIZATIONNAME = Facebook; 831 | TargetAttributes = { 832 | 00E356ED1AD99517003FC87E = { 833 | CreatedOnToolsVersion = 6.2; 834 | TestTargetID = 13B07F861A680F5B00A75B9A; 835 | }; 836 | 2D02E47A1E0B4A5D006451C7 = { 837 | CreatedOnToolsVersion = 8.2.1; 838 | ProvisioningStyle = Automatic; 839 | }; 840 | 2D02E48F1E0B4A5D006451C7 = { 841 | CreatedOnToolsVersion = 8.2.1; 842 | ProvisioningStyle = Automatic; 843 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 844 | }; 845 | }; 846 | }; 847 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "reactNativeChatImageAudio" */; 848 | compatibilityVersion = "Xcode 3.2"; 849 | developmentRegion = English; 850 | hasScannedForEncodings = 0; 851 | knownRegions = ( 852 | en, 853 | Base, 854 | ); 855 | mainGroup = 83CBB9F61A601CBA00E9B192; 856 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 857 | projectDirPath = ""; 858 | projectReferences = ( 859 | { 860 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 861 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 862 | }, 863 | { 864 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 865 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 866 | }, 867 | { 868 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */; 869 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 870 | }, 871 | { 872 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 873 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 874 | }, 875 | { 876 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 877 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 878 | }, 879 | { 880 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 881 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 882 | }, 883 | { 884 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 885 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 886 | }, 887 | { 888 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 889 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 890 | }, 891 | { 892 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 893 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 894 | }, 895 | { 896 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 897 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 898 | }, 899 | { 900 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 901 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 902 | }, 903 | { 904 | ProductGroup = 146834001AC3E56700842450 /* Products */; 905 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 906 | }, 907 | { 908 | ProductGroup = 6F6D703B212A9D6B009E2D8A /* Products */; 909 | ProjectRef = 9B4107B4A8384C0CB2438AC6 /* RNAudio.xcodeproj */; 910 | }, 911 | { 912 | ProductGroup = 6F6D7040212A9D6B009E2D8A /* Products */; 913 | ProjectRef = 9B1E4527EA274523B420913D /* RNImagePicker.xcodeproj */; 914 | }, 915 | { 916 | ProductGroup = 6F6D7045212A9D6B009E2D8A /* Products */; 917 | ProjectRef = D6C5064719CF4D34AC4CB5ED /* RNSound.xcodeproj */; 918 | }, 919 | { 920 | ProductGroup = 6F6D704A212A9D6B009E2D8A /* Products */; 921 | ProjectRef = D301FA3586924C49804EC0A0 /* RNVectorIcons.xcodeproj */; 922 | }, 923 | ); 924 | projectRoot = ""; 925 | targets = ( 926 | 13B07F861A680F5B00A75B9A /* reactNativeChatImageAudio */, 927 | 00E356ED1AD99517003FC87E /* reactNativeChatImageAudioTests */, 928 | 2D02E47A1E0B4A5D006451C7 /* reactNativeChatImageAudio-tvOS */, 929 | 2D02E48F1E0B4A5D006451C7 /* reactNativeChatImageAudio-tvOSTests */, 930 | ); 931 | }; 932 | /* End PBXProject section */ 933 | 934 | /* Begin PBXReferenceProxy section */ 935 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 936 | isa = PBXReferenceProxy; 937 | fileType = archive.ar; 938 | path = libRCTActionSheet.a; 939 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 940 | sourceTree = BUILT_PRODUCTS_DIR; 941 | }; 942 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 943 | isa = PBXReferenceProxy; 944 | fileType = archive.ar; 945 | path = libRCTGeolocation.a; 946 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 947 | sourceTree = BUILT_PRODUCTS_DIR; 948 | }; 949 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 950 | isa = PBXReferenceProxy; 951 | fileType = archive.ar; 952 | path = libRCTImage.a; 953 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 954 | sourceTree = BUILT_PRODUCTS_DIR; 955 | }; 956 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 957 | isa = PBXReferenceProxy; 958 | fileType = archive.ar; 959 | path = libRCTNetwork.a; 960 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 961 | sourceTree = BUILT_PRODUCTS_DIR; 962 | }; 963 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 964 | isa = PBXReferenceProxy; 965 | fileType = archive.ar; 966 | path = libRCTVibration.a; 967 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 968 | sourceTree = BUILT_PRODUCTS_DIR; 969 | }; 970 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 971 | isa = PBXReferenceProxy; 972 | fileType = archive.ar; 973 | path = libRCTSettings.a; 974 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 975 | sourceTree = BUILT_PRODUCTS_DIR; 976 | }; 977 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 978 | isa = PBXReferenceProxy; 979 | fileType = archive.ar; 980 | path = libRCTWebSocket.a; 981 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 982 | sourceTree = BUILT_PRODUCTS_DIR; 983 | }; 984 | 146834041AC3E56700842450 /* libReact.a */ = { 985 | isa = PBXReferenceProxy; 986 | fileType = archive.ar; 987 | path = libReact.a; 988 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 989 | sourceTree = BUILT_PRODUCTS_DIR; 990 | }; 991 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = { 992 | isa = PBXReferenceProxy; 993 | fileType = archive.ar; 994 | path = "libRCTBlob-tvOS.a"; 995 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */; 996 | sourceTree = BUILT_PRODUCTS_DIR; 997 | }; 998 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = { 999 | isa = PBXReferenceProxy; 1000 | fileType = archive.ar; 1001 | path = libfishhook.a; 1002 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */; 1003 | sourceTree = BUILT_PRODUCTS_DIR; 1004 | }; 1005 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = { 1006 | isa = PBXReferenceProxy; 1007 | fileType = archive.ar; 1008 | path = "libfishhook-tvOS.a"; 1009 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */; 1010 | sourceTree = BUILT_PRODUCTS_DIR; 1011 | }; 1012 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = { 1013 | isa = PBXReferenceProxy; 1014 | fileType = archive.ar; 1015 | path = libjsinspector.a; 1016 | remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */; 1017 | sourceTree = BUILT_PRODUCTS_DIR; 1018 | }; 1019 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = { 1020 | isa = PBXReferenceProxy; 1021 | fileType = archive.ar; 1022 | path = "libjsinspector-tvOS.a"; 1023 | remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */; 1024 | sourceTree = BUILT_PRODUCTS_DIR; 1025 | }; 1026 | 2DF0FFE32056DD460020B375 /* libthird-party.a */ = { 1027 | isa = PBXReferenceProxy; 1028 | fileType = archive.ar; 1029 | path = "libthird-party.a"; 1030 | remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */; 1031 | sourceTree = BUILT_PRODUCTS_DIR; 1032 | }; 1033 | 2DF0FFE52056DD460020B375 /* libthird-party.a */ = { 1034 | isa = PBXReferenceProxy; 1035 | fileType = archive.ar; 1036 | path = "libthird-party.a"; 1037 | remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */; 1038 | sourceTree = BUILT_PRODUCTS_DIR; 1039 | }; 1040 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = { 1041 | isa = PBXReferenceProxy; 1042 | fileType = archive.ar; 1043 | path = "libdouble-conversion.a"; 1044 | remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */; 1045 | sourceTree = BUILT_PRODUCTS_DIR; 1046 | }; 1047 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = { 1048 | isa = PBXReferenceProxy; 1049 | fileType = archive.ar; 1050 | path = "libdouble-conversion.a"; 1051 | remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */; 1052 | sourceTree = BUILT_PRODUCTS_DIR; 1053 | }; 1054 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */ = { 1055 | isa = PBXReferenceProxy; 1056 | fileType = archive.ar; 1057 | path = libprivatedata.a; 1058 | remoteRef = 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */; 1059 | sourceTree = BUILT_PRODUCTS_DIR; 1060 | }; 1061 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */ = { 1062 | isa = PBXReferenceProxy; 1063 | fileType = archive.ar; 1064 | path = "libprivatedata-tvOS.a"; 1065 | remoteRef = 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */; 1066 | sourceTree = BUILT_PRODUCTS_DIR; 1067 | }; 1068 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 1069 | isa = PBXReferenceProxy; 1070 | fileType = archive.ar; 1071 | path = "libRCTImage-tvOS.a"; 1072 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 1073 | sourceTree = BUILT_PRODUCTS_DIR; 1074 | }; 1075 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 1076 | isa = PBXReferenceProxy; 1077 | fileType = archive.ar; 1078 | path = "libRCTLinking-tvOS.a"; 1079 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 1080 | sourceTree = BUILT_PRODUCTS_DIR; 1081 | }; 1082 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 1083 | isa = PBXReferenceProxy; 1084 | fileType = archive.ar; 1085 | path = "libRCTNetwork-tvOS.a"; 1086 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 1087 | sourceTree = BUILT_PRODUCTS_DIR; 1088 | }; 1089 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 1090 | isa = PBXReferenceProxy; 1091 | fileType = archive.ar; 1092 | path = "libRCTSettings-tvOS.a"; 1093 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 1094 | sourceTree = BUILT_PRODUCTS_DIR; 1095 | }; 1096 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 1097 | isa = PBXReferenceProxy; 1098 | fileType = archive.ar; 1099 | path = "libRCTText-tvOS.a"; 1100 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 1101 | sourceTree = BUILT_PRODUCTS_DIR; 1102 | }; 1103 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 1104 | isa = PBXReferenceProxy; 1105 | fileType = archive.ar; 1106 | path = "libRCTWebSocket-tvOS.a"; 1107 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 1108 | sourceTree = BUILT_PRODUCTS_DIR; 1109 | }; 1110 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 1111 | isa = PBXReferenceProxy; 1112 | fileType = archive.ar; 1113 | path = libReact.a; 1114 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 1115 | sourceTree = BUILT_PRODUCTS_DIR; 1116 | }; 1117 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 1118 | isa = PBXReferenceProxy; 1119 | fileType = archive.ar; 1120 | path = libyoga.a; 1121 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 1122 | sourceTree = BUILT_PRODUCTS_DIR; 1123 | }; 1124 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 1125 | isa = PBXReferenceProxy; 1126 | fileType = archive.ar; 1127 | path = libyoga.a; 1128 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 1129 | sourceTree = BUILT_PRODUCTS_DIR; 1130 | }; 1131 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 1132 | isa = PBXReferenceProxy; 1133 | fileType = archive.ar; 1134 | path = libcxxreact.a; 1135 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 1136 | sourceTree = BUILT_PRODUCTS_DIR; 1137 | }; 1138 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 1139 | isa = PBXReferenceProxy; 1140 | fileType = archive.ar; 1141 | path = libcxxreact.a; 1142 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 1143 | sourceTree = BUILT_PRODUCTS_DIR; 1144 | }; 1145 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 1146 | isa = PBXReferenceProxy; 1147 | fileType = archive.ar; 1148 | path = libjschelpers.a; 1149 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 1150 | sourceTree = BUILT_PRODUCTS_DIR; 1151 | }; 1152 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 1153 | isa = PBXReferenceProxy; 1154 | fileType = archive.ar; 1155 | path = libjschelpers.a; 1156 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 1157 | sourceTree = BUILT_PRODUCTS_DIR; 1158 | }; 1159 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1160 | isa = PBXReferenceProxy; 1161 | fileType = archive.ar; 1162 | path = libRCTAnimation.a; 1163 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1164 | sourceTree = BUILT_PRODUCTS_DIR; 1165 | }; 1166 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1167 | isa = PBXReferenceProxy; 1168 | fileType = archive.ar; 1169 | path = libRCTAnimation.a; 1170 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1171 | sourceTree = BUILT_PRODUCTS_DIR; 1172 | }; 1173 | 6F6D703F212A9D6B009E2D8A /* libRNAudio.a */ = { 1174 | isa = PBXReferenceProxy; 1175 | fileType = archive.ar; 1176 | path = libRNAudio.a; 1177 | remoteRef = 6F6D703E212A9D6B009E2D8A /* PBXContainerItemProxy */; 1178 | sourceTree = BUILT_PRODUCTS_DIR; 1179 | }; 1180 | 6F6D7044212A9D6B009E2D8A /* libRNImagePicker.a */ = { 1181 | isa = PBXReferenceProxy; 1182 | fileType = archive.ar; 1183 | path = libRNImagePicker.a; 1184 | remoteRef = 6F6D7043212A9D6B009E2D8A /* PBXContainerItemProxy */; 1185 | sourceTree = BUILT_PRODUCTS_DIR; 1186 | }; 1187 | 6F6D7049212A9D6B009E2D8A /* libRNSound.a */ = { 1188 | isa = PBXReferenceProxy; 1189 | fileType = archive.ar; 1190 | path = libRNSound.a; 1191 | remoteRef = 6F6D7048212A9D6B009E2D8A /* PBXContainerItemProxy */; 1192 | sourceTree = BUILT_PRODUCTS_DIR; 1193 | }; 1194 | 6F6D704E212A9D6B009E2D8A /* libRNVectorIcons.a */ = { 1195 | isa = PBXReferenceProxy; 1196 | fileType = archive.ar; 1197 | path = libRNVectorIcons.a; 1198 | remoteRef = 6F6D704D212A9D6B009E2D8A /* PBXContainerItemProxy */; 1199 | sourceTree = BUILT_PRODUCTS_DIR; 1200 | }; 1201 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 1202 | isa = PBXReferenceProxy; 1203 | fileType = archive.ar; 1204 | path = libRCTLinking.a; 1205 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 1206 | sourceTree = BUILT_PRODUCTS_DIR; 1207 | }; 1208 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 1209 | isa = PBXReferenceProxy; 1210 | fileType = archive.ar; 1211 | path = libRCTText.a; 1212 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 1213 | sourceTree = BUILT_PRODUCTS_DIR; 1214 | }; 1215 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { 1216 | isa = PBXReferenceProxy; 1217 | fileType = archive.ar; 1218 | path = libRCTBlob.a; 1219 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */; 1220 | sourceTree = BUILT_PRODUCTS_DIR; 1221 | }; 1222 | /* End PBXReferenceProxy section */ 1223 | 1224 | /* Begin PBXResourcesBuildPhase section */ 1225 | 00E356EC1AD99517003FC87E /* Resources */ = { 1226 | isa = PBXResourcesBuildPhase; 1227 | buildActionMask = 2147483647; 1228 | files = ( 1229 | ); 1230 | runOnlyForDeploymentPostprocessing = 0; 1231 | }; 1232 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 1233 | isa = PBXResourcesBuildPhase; 1234 | buildActionMask = 2147483647; 1235 | files = ( 1236 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 1237 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 1238 | AA8B18DAB0BE4C6D848B936F /* Entypo.ttf in Resources */, 1239 | D727281C6E75437A87064E28 /* EvilIcons.ttf in Resources */, 1240 | 1B1F285153B6459B98FB16AF /* Feather.ttf in Resources */, 1241 | 83BF566B54C64384AE09ECB9 /* FontAwesome.ttf in Resources */, 1242 | F922ADDD0AEB464FB7F9DD55 /* FontAwesome5_Brands.ttf in Resources */, 1243 | 97C131C476AB45659878DBF5 /* FontAwesome5_Regular.ttf in Resources */, 1244 | 47F782E31F85494BAFED4D31 /* FontAwesome5_Solid.ttf in Resources */, 1245 | BCC3A8CB3D95425FB0F592E9 /* Foundation.ttf in Resources */, 1246 | EAB327A587BF4A878C191088 /* Ionicons.ttf in Resources */, 1247 | CAF2B94EB9964B529E6F084F /* MaterialCommunityIcons.ttf in Resources */, 1248 | DA519FD8E3194EE6B176BA16 /* MaterialIcons.ttf in Resources */, 1249 | 6EA601C4A6DD4A04B5E40CA8 /* Octicons.ttf in Resources */, 1250 | 4D07F754B8254C0695BA1078 /* SimpleLineIcons.ttf in Resources */, 1251 | 6CAF6895A29A4E8B88E63AEE /* Zocial.ttf in Resources */, 1252 | ); 1253 | runOnlyForDeploymentPostprocessing = 0; 1254 | }; 1255 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 1256 | isa = PBXResourcesBuildPhase; 1257 | buildActionMask = 2147483647; 1258 | files = ( 1259 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 1260 | ); 1261 | runOnlyForDeploymentPostprocessing = 0; 1262 | }; 1263 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 1264 | isa = PBXResourcesBuildPhase; 1265 | buildActionMask = 2147483647; 1266 | files = ( 1267 | ); 1268 | runOnlyForDeploymentPostprocessing = 0; 1269 | }; 1270 | /* End PBXResourcesBuildPhase section */ 1271 | 1272 | /* Begin PBXShellScriptBuildPhase section */ 1273 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 1274 | isa = PBXShellScriptBuildPhase; 1275 | buildActionMask = 2147483647; 1276 | files = ( 1277 | ); 1278 | inputPaths = ( 1279 | ); 1280 | name = "Bundle React Native code and images"; 1281 | outputPaths = ( 1282 | ); 1283 | runOnlyForDeploymentPostprocessing = 0; 1284 | shellPath = /bin/sh; 1285 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1286 | }; 1287 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 1288 | isa = PBXShellScriptBuildPhase; 1289 | buildActionMask = 2147483647; 1290 | files = ( 1291 | ); 1292 | inputPaths = ( 1293 | ); 1294 | name = "Bundle React Native Code And Images"; 1295 | outputPaths = ( 1296 | ); 1297 | runOnlyForDeploymentPostprocessing = 0; 1298 | shellPath = /bin/sh; 1299 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1300 | }; 1301 | /* End PBXShellScriptBuildPhase section */ 1302 | 1303 | /* Begin PBXSourcesBuildPhase section */ 1304 | 00E356EA1AD99517003FC87E /* Sources */ = { 1305 | isa = PBXSourcesBuildPhase; 1306 | buildActionMask = 2147483647; 1307 | files = ( 1308 | 00E356F31AD99517003FC87E /* reactNativeChatImageAudioTests.m in Sources */, 1309 | ); 1310 | runOnlyForDeploymentPostprocessing = 0; 1311 | }; 1312 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1313 | isa = PBXSourcesBuildPhase; 1314 | buildActionMask = 2147483647; 1315 | files = ( 1316 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1317 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1318 | ); 1319 | runOnlyForDeploymentPostprocessing = 0; 1320 | }; 1321 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1322 | isa = PBXSourcesBuildPhase; 1323 | buildActionMask = 2147483647; 1324 | files = ( 1325 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1326 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1327 | ); 1328 | runOnlyForDeploymentPostprocessing = 0; 1329 | }; 1330 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1331 | isa = PBXSourcesBuildPhase; 1332 | buildActionMask = 2147483647; 1333 | files = ( 1334 | 2DCD954D1E0B4F2C00145EB5 /* reactNativeChatImageAudioTests.m in Sources */, 1335 | ); 1336 | runOnlyForDeploymentPostprocessing = 0; 1337 | }; 1338 | /* End PBXSourcesBuildPhase section */ 1339 | 1340 | /* Begin PBXTargetDependency section */ 1341 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1342 | isa = PBXTargetDependency; 1343 | target = 13B07F861A680F5B00A75B9A /* reactNativeChatImageAudio */; 1344 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1345 | }; 1346 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1347 | isa = PBXTargetDependency; 1348 | target = 2D02E47A1E0B4A5D006451C7 /* reactNativeChatImageAudio-tvOS */; 1349 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1350 | }; 1351 | /* End PBXTargetDependency section */ 1352 | 1353 | /* Begin PBXVariantGroup section */ 1354 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1355 | isa = PBXVariantGroup; 1356 | children = ( 1357 | 13B07FB21A68108700A75B9A /* Base */, 1358 | ); 1359 | name = LaunchScreen.xib; 1360 | path = reactNativeChatImageAudio; 1361 | sourceTree = ""; 1362 | }; 1363 | /* End PBXVariantGroup section */ 1364 | 1365 | /* Begin XCBuildConfiguration section */ 1366 | 00E356F61AD99517003FC87E /* Debug */ = { 1367 | isa = XCBuildConfiguration; 1368 | buildSettings = { 1369 | BUNDLE_LOADER = "$(TEST_HOST)"; 1370 | GCC_PREPROCESSOR_DEFINITIONS = ( 1371 | "DEBUG=1", 1372 | "$(inherited)", 1373 | ); 1374 | HEADER_SEARCH_PATHS = ( 1375 | "$(inherited)", 1376 | "$(SRCROOT)/../node_modules/react-native-audio/ios", 1377 | "$(SRCROOT)/../node_modules/react-native-image-picker/ios", 1378 | "$(SRCROOT)/../node_modules/react-native-sound/RNSound", 1379 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1380 | ); 1381 | INFOPLIST_FILE = reactNativeChatImageAudioTests/Info.plist; 1382 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1383 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1384 | LIBRARY_SEARCH_PATHS = ( 1385 | "$(inherited)", 1386 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1387 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1388 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1389 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1390 | ); 1391 | OTHER_LDFLAGS = ( 1392 | "-ObjC", 1393 | "-lc++", 1394 | ); 1395 | PRODUCT_NAME = "$(TARGET_NAME)"; 1396 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/reactNativeChatImageAudio.app/reactNativeChatImageAudio"; 1397 | }; 1398 | name = Debug; 1399 | }; 1400 | 00E356F71AD99517003FC87E /* Release */ = { 1401 | isa = XCBuildConfiguration; 1402 | buildSettings = { 1403 | BUNDLE_LOADER = "$(TEST_HOST)"; 1404 | COPY_PHASE_STRIP = NO; 1405 | HEADER_SEARCH_PATHS = ( 1406 | "$(inherited)", 1407 | "$(SRCROOT)/../node_modules/react-native-audio/ios", 1408 | "$(SRCROOT)/../node_modules/react-native-image-picker/ios", 1409 | "$(SRCROOT)/../node_modules/react-native-sound/RNSound", 1410 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1411 | ); 1412 | INFOPLIST_FILE = reactNativeChatImageAudioTests/Info.plist; 1413 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1414 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1415 | LIBRARY_SEARCH_PATHS = ( 1416 | "$(inherited)", 1417 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1418 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1419 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1420 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1421 | ); 1422 | OTHER_LDFLAGS = ( 1423 | "-ObjC", 1424 | "-lc++", 1425 | ); 1426 | PRODUCT_NAME = "$(TARGET_NAME)"; 1427 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/reactNativeChatImageAudio.app/reactNativeChatImageAudio"; 1428 | }; 1429 | name = Release; 1430 | }; 1431 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1432 | isa = XCBuildConfiguration; 1433 | buildSettings = { 1434 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1435 | CURRENT_PROJECT_VERSION = 1; 1436 | DEAD_CODE_STRIPPING = NO; 1437 | HEADER_SEARCH_PATHS = ( 1438 | "$(inherited)", 1439 | "$(SRCROOT)/../node_modules/react-native-audio/ios", 1440 | "$(SRCROOT)/../node_modules/react-native-image-picker/ios", 1441 | "$(SRCROOT)/../node_modules/react-native-sound/RNSound", 1442 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1443 | ); 1444 | INFOPLIST_FILE = reactNativeChatImageAudio/Info.plist; 1445 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1446 | OTHER_LDFLAGS = ( 1447 | "$(inherited)", 1448 | "-ObjC", 1449 | "-lc++", 1450 | ); 1451 | PRODUCT_NAME = reactNativeChatImageAudio; 1452 | VERSIONING_SYSTEM = "apple-generic"; 1453 | }; 1454 | name = Debug; 1455 | }; 1456 | 13B07F951A680F5B00A75B9A /* Release */ = { 1457 | isa = XCBuildConfiguration; 1458 | buildSettings = { 1459 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1460 | CURRENT_PROJECT_VERSION = 1; 1461 | HEADER_SEARCH_PATHS = ( 1462 | "$(inherited)", 1463 | "$(SRCROOT)/../node_modules/react-native-audio/ios", 1464 | "$(SRCROOT)/../node_modules/react-native-image-picker/ios", 1465 | "$(SRCROOT)/../node_modules/react-native-sound/RNSound", 1466 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1467 | ); 1468 | INFOPLIST_FILE = reactNativeChatImageAudio/Info.plist; 1469 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1470 | OTHER_LDFLAGS = ( 1471 | "$(inherited)", 1472 | "-ObjC", 1473 | "-lc++", 1474 | ); 1475 | PRODUCT_NAME = reactNativeChatImageAudio; 1476 | VERSIONING_SYSTEM = "apple-generic"; 1477 | }; 1478 | name = Release; 1479 | }; 1480 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1481 | isa = XCBuildConfiguration; 1482 | buildSettings = { 1483 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1484 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1485 | CLANG_ANALYZER_NONNULL = YES; 1486 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1487 | CLANG_WARN_INFINITE_RECURSION = YES; 1488 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1489 | DEBUG_INFORMATION_FORMAT = dwarf; 1490 | ENABLE_TESTABILITY = YES; 1491 | GCC_NO_COMMON_BLOCKS = YES; 1492 | HEADER_SEARCH_PATHS = ( 1493 | "$(inherited)", 1494 | "$(SRCROOT)/../node_modules/react-native-audio/ios", 1495 | "$(SRCROOT)/../node_modules/react-native-image-picker/ios", 1496 | "$(SRCROOT)/../node_modules/react-native-sound/RNSound", 1497 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1498 | ); 1499 | INFOPLIST_FILE = "reactNativeChatImageAudio-tvOS/Info.plist"; 1500 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1501 | LIBRARY_SEARCH_PATHS = ( 1502 | "$(inherited)", 1503 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1504 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1505 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1506 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1507 | ); 1508 | OTHER_LDFLAGS = ( 1509 | "-ObjC", 1510 | "-lc++", 1511 | ); 1512 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.reactNativeChatImageAudio-tvOS"; 1513 | PRODUCT_NAME = "$(TARGET_NAME)"; 1514 | SDKROOT = appletvos; 1515 | TARGETED_DEVICE_FAMILY = 3; 1516 | TVOS_DEPLOYMENT_TARGET = 9.2; 1517 | }; 1518 | name = Debug; 1519 | }; 1520 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1521 | isa = XCBuildConfiguration; 1522 | buildSettings = { 1523 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1524 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1525 | CLANG_ANALYZER_NONNULL = YES; 1526 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1527 | CLANG_WARN_INFINITE_RECURSION = YES; 1528 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1529 | COPY_PHASE_STRIP = NO; 1530 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1531 | GCC_NO_COMMON_BLOCKS = YES; 1532 | HEADER_SEARCH_PATHS = ( 1533 | "$(inherited)", 1534 | "$(SRCROOT)/../node_modules/react-native-audio/ios", 1535 | "$(SRCROOT)/../node_modules/react-native-image-picker/ios", 1536 | "$(SRCROOT)/../node_modules/react-native-sound/RNSound", 1537 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1538 | ); 1539 | INFOPLIST_FILE = "reactNativeChatImageAudio-tvOS/Info.plist"; 1540 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1541 | LIBRARY_SEARCH_PATHS = ( 1542 | "$(inherited)", 1543 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1544 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1545 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1546 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1547 | ); 1548 | OTHER_LDFLAGS = ( 1549 | "-ObjC", 1550 | "-lc++", 1551 | ); 1552 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.reactNativeChatImageAudio-tvOS"; 1553 | PRODUCT_NAME = "$(TARGET_NAME)"; 1554 | SDKROOT = appletvos; 1555 | TARGETED_DEVICE_FAMILY = 3; 1556 | TVOS_DEPLOYMENT_TARGET = 9.2; 1557 | }; 1558 | name = Release; 1559 | }; 1560 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1561 | isa = XCBuildConfiguration; 1562 | buildSettings = { 1563 | BUNDLE_LOADER = "$(TEST_HOST)"; 1564 | CLANG_ANALYZER_NONNULL = YES; 1565 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1566 | CLANG_WARN_INFINITE_RECURSION = YES; 1567 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1568 | DEBUG_INFORMATION_FORMAT = dwarf; 1569 | ENABLE_TESTABILITY = YES; 1570 | GCC_NO_COMMON_BLOCKS = YES; 1571 | HEADER_SEARCH_PATHS = ( 1572 | "$(inherited)", 1573 | "$(SRCROOT)/../node_modules/react-native-audio/ios", 1574 | "$(SRCROOT)/../node_modules/react-native-image-picker/ios", 1575 | "$(SRCROOT)/../node_modules/react-native-sound/RNSound", 1576 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1577 | ); 1578 | INFOPLIST_FILE = "reactNativeChatImageAudio-tvOSTests/Info.plist"; 1579 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1580 | LIBRARY_SEARCH_PATHS = ( 1581 | "$(inherited)", 1582 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1583 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1584 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1585 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1586 | ); 1587 | OTHER_LDFLAGS = ( 1588 | "-ObjC", 1589 | "-lc++", 1590 | ); 1591 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.reactNativeChatImageAudio-tvOSTests"; 1592 | PRODUCT_NAME = "$(TARGET_NAME)"; 1593 | SDKROOT = appletvos; 1594 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/reactNativeChatImageAudio-tvOS.app/reactNativeChatImageAudio-tvOS"; 1595 | TVOS_DEPLOYMENT_TARGET = 10.1; 1596 | }; 1597 | name = Debug; 1598 | }; 1599 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1600 | isa = XCBuildConfiguration; 1601 | buildSettings = { 1602 | BUNDLE_LOADER = "$(TEST_HOST)"; 1603 | CLANG_ANALYZER_NONNULL = YES; 1604 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1605 | CLANG_WARN_INFINITE_RECURSION = YES; 1606 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1607 | COPY_PHASE_STRIP = NO; 1608 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1609 | GCC_NO_COMMON_BLOCKS = YES; 1610 | HEADER_SEARCH_PATHS = ( 1611 | "$(inherited)", 1612 | "$(SRCROOT)/../node_modules/react-native-audio/ios", 1613 | "$(SRCROOT)/../node_modules/react-native-image-picker/ios", 1614 | "$(SRCROOT)/../node_modules/react-native-sound/RNSound", 1615 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1616 | ); 1617 | INFOPLIST_FILE = "reactNativeChatImageAudio-tvOSTests/Info.plist"; 1618 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1619 | LIBRARY_SEARCH_PATHS = ( 1620 | "$(inherited)", 1621 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1622 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1623 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1624 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1625 | ); 1626 | OTHER_LDFLAGS = ( 1627 | "-ObjC", 1628 | "-lc++", 1629 | ); 1630 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.reactNativeChatImageAudio-tvOSTests"; 1631 | PRODUCT_NAME = "$(TARGET_NAME)"; 1632 | SDKROOT = appletvos; 1633 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/reactNativeChatImageAudio-tvOS.app/reactNativeChatImageAudio-tvOS"; 1634 | TVOS_DEPLOYMENT_TARGET = 10.1; 1635 | }; 1636 | name = Release; 1637 | }; 1638 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1639 | isa = XCBuildConfiguration; 1640 | buildSettings = { 1641 | ALWAYS_SEARCH_USER_PATHS = NO; 1642 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1643 | CLANG_CXX_LIBRARY = "libc++"; 1644 | CLANG_ENABLE_MODULES = YES; 1645 | CLANG_ENABLE_OBJC_ARC = YES; 1646 | CLANG_WARN_BOOL_CONVERSION = YES; 1647 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1648 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1649 | CLANG_WARN_EMPTY_BODY = YES; 1650 | CLANG_WARN_ENUM_CONVERSION = YES; 1651 | CLANG_WARN_INT_CONVERSION = YES; 1652 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1653 | CLANG_WARN_UNREACHABLE_CODE = YES; 1654 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1655 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1656 | COPY_PHASE_STRIP = NO; 1657 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1658 | GCC_C_LANGUAGE_STANDARD = gnu99; 1659 | GCC_DYNAMIC_NO_PIC = NO; 1660 | GCC_OPTIMIZATION_LEVEL = 0; 1661 | GCC_PREPROCESSOR_DEFINITIONS = ( 1662 | "DEBUG=1", 1663 | "$(inherited)", 1664 | ); 1665 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1666 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1667 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1668 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1669 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1670 | GCC_WARN_UNUSED_FUNCTION = YES; 1671 | GCC_WARN_UNUSED_VARIABLE = YES; 1672 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1673 | MTL_ENABLE_DEBUG_INFO = YES; 1674 | ONLY_ACTIVE_ARCH = YES; 1675 | SDKROOT = iphoneos; 1676 | }; 1677 | name = Debug; 1678 | }; 1679 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1680 | isa = XCBuildConfiguration; 1681 | buildSettings = { 1682 | ALWAYS_SEARCH_USER_PATHS = NO; 1683 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1684 | CLANG_CXX_LIBRARY = "libc++"; 1685 | CLANG_ENABLE_MODULES = YES; 1686 | CLANG_ENABLE_OBJC_ARC = YES; 1687 | CLANG_WARN_BOOL_CONVERSION = YES; 1688 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1689 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1690 | CLANG_WARN_EMPTY_BODY = YES; 1691 | CLANG_WARN_ENUM_CONVERSION = YES; 1692 | CLANG_WARN_INT_CONVERSION = YES; 1693 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1694 | CLANG_WARN_UNREACHABLE_CODE = YES; 1695 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1696 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1697 | COPY_PHASE_STRIP = YES; 1698 | ENABLE_NS_ASSERTIONS = NO; 1699 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1700 | GCC_C_LANGUAGE_STANDARD = gnu99; 1701 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1702 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1703 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1704 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1705 | GCC_WARN_UNUSED_FUNCTION = YES; 1706 | GCC_WARN_UNUSED_VARIABLE = YES; 1707 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1708 | MTL_ENABLE_DEBUG_INFO = NO; 1709 | SDKROOT = iphoneos; 1710 | VALIDATE_PRODUCT = YES; 1711 | }; 1712 | name = Release; 1713 | }; 1714 | /* End XCBuildConfiguration section */ 1715 | 1716 | /* Begin XCConfigurationList section */ 1717 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "reactNativeChatImageAudioTests" */ = { 1718 | isa = XCConfigurationList; 1719 | buildConfigurations = ( 1720 | 00E356F61AD99517003FC87E /* Debug */, 1721 | 00E356F71AD99517003FC87E /* Release */, 1722 | ); 1723 | defaultConfigurationIsVisible = 0; 1724 | defaultConfigurationName = Release; 1725 | }; 1726 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "reactNativeChatImageAudio" */ = { 1727 | isa = XCConfigurationList; 1728 | buildConfigurations = ( 1729 | 13B07F941A680F5B00A75B9A /* Debug */, 1730 | 13B07F951A680F5B00A75B9A /* Release */, 1731 | ); 1732 | defaultConfigurationIsVisible = 0; 1733 | defaultConfigurationName = Release; 1734 | }; 1735 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "reactNativeChatImageAudio-tvOS" */ = { 1736 | isa = XCConfigurationList; 1737 | buildConfigurations = ( 1738 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1739 | 2D02E4981E0B4A5E006451C7 /* Release */, 1740 | ); 1741 | defaultConfigurationIsVisible = 0; 1742 | defaultConfigurationName = Release; 1743 | }; 1744 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "reactNativeChatImageAudio-tvOSTests" */ = { 1745 | isa = XCConfigurationList; 1746 | buildConfigurations = ( 1747 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1748 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1749 | ); 1750 | defaultConfigurationIsVisible = 0; 1751 | defaultConfigurationName = Release; 1752 | }; 1753 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "reactNativeChatImageAudio" */ = { 1754 | isa = XCConfigurationList; 1755 | buildConfigurations = ( 1756 | 83CBBA201A601CBA00E9B192 /* Debug */, 1757 | 83CBBA211A601CBA00E9B192 /* Release */, 1758 | ); 1759 | defaultConfigurationIsVisible = 0; 1760 | defaultConfigurationName = Release; 1761 | }; 1762 | /* End XCConfigurationList section */ 1763 | }; 1764 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1765 | } 1766 | -------------------------------------------------------------------------------- /ios/reactNativeChatImageAudio.xcodeproj/xcshareddata/xcschemes/reactNativeChatImageAudio-tvOS.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/reactNativeChatImageAudio.xcodeproj/xcshareddata/xcschemes/reactNativeChatImageAudio.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/reactNativeChatImageAudio/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | @interface AppDelegate : UIResponder 11 | 12 | @property (nonatomic, strong) UIWindow *window; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /ios/reactNativeChatImageAudio/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import "AppDelegate.h" 9 | 10 | #import 11 | #import 12 | 13 | @implementation AppDelegate 14 | 15 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 16 | { 17 | NSURL *jsCodeLocation; 18 | 19 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; 20 | 21 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 22 | moduleName:@"reactNativeChatImageAudio" 23 | initialProperties:nil 24 | launchOptions:launchOptions]; 25 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 26 | 27 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 28 | UIViewController *rootViewController = [UIViewController new]; 29 | rootViewController.view = rootView; 30 | self.window.rootViewController = rootViewController; 31 | [self.window makeKeyAndVisible]; 32 | return YES; 33 | } 34 | 35 | @end 36 | -------------------------------------------------------------------------------- /ios/reactNativeChatImageAudio/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 21 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /ios/reactNativeChatImageAudio/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /ios/reactNativeChatImageAudio/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ios/reactNativeChatImageAudio/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | LSApplicationCategoryType 6 | 7 | NSPhotoLibraryUsageDescription 8 | this app needs usage of your library 9 | NSMicrophoneUsageDescription 10 | this app needs usage of your microphone 11 | NSCameraUsageDescription 12 | this app needs usage of your camera 13 | CFBundleDevelopmentRegion 14 | en 15 | CFBundleDisplayName 16 | reactNativeChatImageAudio 17 | CFBundleExecutable 18 | $(EXECUTABLE_NAME) 19 | CFBundleIdentifier 20 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 21 | CFBundleInfoDictionaryVersion 22 | 6.0 23 | CFBundleName 24 | $(PRODUCT_NAME) 25 | CFBundlePackageType 26 | APPL 27 | CFBundleShortVersionString 28 | 1.0 29 | CFBundleSignature 30 | ???? 31 | CFBundleVersion 32 | 1 33 | LSRequiresIPhoneOS 34 | 35 | UILaunchStoryboardName 36 | LaunchScreen 37 | UIRequiredDeviceCapabilities 38 | 39 | armv7 40 | 41 | UISupportedInterfaceOrientations 42 | 43 | UIInterfaceOrientationPortrait 44 | UIInterfaceOrientationLandscapeLeft 45 | UIInterfaceOrientationLandscapeRight 46 | 47 | UIViewControllerBasedStatusBarAppearance 48 | 49 | NSLocationWhenInUseUsageDescription 50 | 51 | NSAppTransportSecurity 52 | 53 | NSExceptionDomains 54 | 55 | localhost 56 | 57 | NSExceptionAllowsInsecureHTTPLoads 58 | 59 | 60 | 61 | 62 | UIAppFonts 63 | 64 | Entypo.ttf 65 | EvilIcons.ttf 66 | Feather.ttf 67 | FontAwesome.ttf 68 | FontAwesome5_Brands.ttf 69 | FontAwesome5_Regular.ttf 70 | FontAwesome5_Solid.ttf 71 | Foundation.ttf 72 | Ionicons.ttf 73 | MaterialCommunityIcons.ttf 74 | MaterialIcons.ttf 75 | Octicons.ttf 76 | SimpleLineIcons.ttf 77 | Zocial.ttf 78 | 79 | 80 | 81 | -------------------------------------------------------------------------------- /ios/reactNativeChatImageAudio/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /ios/reactNativeChatImageAudioTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/reactNativeChatImageAudioTests/reactNativeChatImageAudioTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | #import 10 | 11 | #import 12 | #import 13 | 14 | #define TIMEOUT_SECONDS 600 15 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 16 | 17 | @interface reactNativeChatImageAudioTests : XCTestCase 18 | 19 | @end 20 | 21 | @implementation reactNativeChatImageAudioTests 22 | 23 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 24 | { 25 | if (test(view)) { 26 | return YES; 27 | } 28 | for (UIView *subview in [view subviews]) { 29 | if ([self findSubviewInView:subview matching:test]) { 30 | return YES; 31 | } 32 | } 33 | return NO; 34 | } 35 | 36 | - (void)testRendersWelcomeScreen 37 | { 38 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController]; 39 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 40 | BOOL foundElement = NO; 41 | 42 | __block NSString *redboxError = nil; 43 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 44 | if (level >= RCTLogLevelError) { 45 | redboxError = message; 46 | } 47 | }); 48 | 49 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 50 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 51 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 52 | 53 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 54 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 55 | return YES; 56 | } 57 | return NO; 58 | }]; 59 | } 60 | 61 | RCTSetLogFunction(RCTDefaultLogFunction); 62 | 63 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 64 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 65 | } 66 | 67 | 68 | @end 69 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "reactNativeChatImageAudio", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node node_modules/react-native/local-cli/cli.js start", 7 | "test": "jest" 8 | }, 9 | "dependencies": { 10 | "react": "16.4.1", 11 | "react-native": "0.56.0", 12 | "expo": "^27.0.1", 13 | "firebase": "^5.4.0", 14 | "prop-types": "^15.6.2", 15 | "re-base": "^4.0.0", 16 | "react-native-audio": "^4.1.3", 17 | "react-native-aws3": "0.0.8", 18 | "react-native-gifted-chat": "^0.4.3", 19 | "react-native-image-picker": "^0.26.10", 20 | "react-native-navbar": "^2.1.0", 21 | "react-native-router-flux": "^4.0.1", 22 | "react-native-sound": "^0.10.9", 23 | "react-native-vector-icons": "^5.0.0" 24 | }, 25 | "devDependencies": { 26 | "babel-jest": "23.4.2", 27 | "babel-preset-react-native": "^5", 28 | "jest": "23.5.0", 29 | "react-test-renderer": "16.4.1" 30 | }, 31 | "jest": { 32 | "preset": "react-native" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /src/components/chat.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from "react"; 2 | import { GiftedChat, Bubble } from "react-native-gifted-chat"; 3 | import { ActionConst, Actions } from "react-native-router-flux"; 4 | import { 5 | View, 6 | Text, 7 | Platform, 8 | PermissionsAndroid, 9 | Dimensions, 10 | ActivityIndicator, 11 | Alert, 12 | KeyboardAvoidingView 13 | } from "react-native"; 14 | import { AudioRecorder, AudioUtils } from "react-native-audio"; 15 | import propTypes from "prop-types"; 16 | import { RNS3 } from "react-native-aws3"; 17 | import Ionicons from "react-native-vector-icons/Ionicons"; 18 | import Sound from "react-native-sound"; 19 | import { firebaseDB } from "../config/FirebaseConfig"; 20 | import NavigationBar from "react-native-navbar"; 21 | import AwsConfig from "../config/AwsConfig" 22 | 23 | const ImagePicker = require("react-native-image-picker"); 24 | 25 | export default class Chat extends Component { 26 | static propTypes = { 27 | user: propTypes.object, 28 | }; 29 | state = { 30 | messages: [], 31 | startAudio: false, 32 | hasPermission: false, 33 | audioPath: `${ 34 | AudioUtils.DocumentDirectoryPath 35 | }/${this.messageIdGenerator()}test.aac`, 36 | playAudio: false, 37 | fetchChats: false, 38 | audioSettings: { 39 | SampleRate: 22050, 40 | Channels: 1, 41 | AudioQuality: "Low", 42 | AudioEncoding: "aac", 43 | MeteringEnabled: true, 44 | IncludeBase64: true, 45 | AudioEncodingBitRate: 32000 46 | } 47 | }; 48 | componentWillMount() { 49 | console.log(AwsConfig, "awsconfig") 50 | console.log(this.props, "chat props") 51 | this.chatsFromFB = firebaseDB.ref(`/chat/${this.props.user.roomName}`); 52 | console.log(this.chatsFromFB, "chats from fb") 53 | this.chatsFromFB.on("value", snapshot => { 54 | console.log(snapshot.val(), "snap shot") 55 | if (!snapshot.val()) { 56 | this.setState({ 57 | fetchChats: true 58 | }); 59 | return; 60 | } 61 | let { messages } = snapshot.val(); 62 | messages = messages.map(node => { 63 | console.log(node, "node") 64 | const message = {}; 65 | message._id = node._id; 66 | message.text = node.messageType === "message" ? node.text : ""; 67 | message.createdAt = node.createdAt; 68 | message.user = { 69 | _id: node.user._id, 70 | name: node.user.name, 71 | avatar: node.user.avatar 72 | }; 73 | message.image = node.messageType === "image" ? node.image : ""; 74 | message.audio = node.messageType === "audio" ? node.audio : ""; 75 | message.messageType = node.messageType; 76 | return message; 77 | }); 78 | this.setState({ 79 | messages: [...messages] 80 | }); 81 | }); 82 | } 83 | componentDidMount() { 84 | this.checkPermission().then(async hasPermission => { 85 | this.setState({ hasPermission }); 86 | if (!hasPermission) return; 87 | await AudioRecorder.prepareRecordingAtPath( 88 | this.state.audioPath, 89 | this.state.audioSettings 90 | ); 91 | AudioRecorder.onProgress = data => { 92 | console.log(data, "onProgress data"); 93 | }; 94 | AudioRecorder.onFinished = data => { 95 | console.log(data, "on finish"); 96 | }; 97 | }); 98 | } 99 | componentWillUnmount() { 100 | this.setState({ 101 | messages: [] 102 | }); 103 | } 104 | 105 | checkPermission() { 106 | if (Platform.OS !== "android") { 107 | return Promise.resolve(true); 108 | } 109 | const rationale = { 110 | title: "Microphone Permission", 111 | message: 112 | "AudioExample needs access to your microphone so you can record audio." 113 | }; 114 | return PermissionsAndroid.request( 115 | PermissionsAndroid.PERMISSIONS.RECORD_AUDIO, 116 | rationale 117 | ).then(result => { 118 | console.log("Permission result:", result); 119 | return result === true || result === PermissionsAndroid.RESULTS.GRANTED; 120 | }); 121 | } 122 | onSend(messages = []) { 123 | messages[0].messageType = "message"; 124 | this.chatsFromFB.update({ 125 | messages: [messages[0], ...this.state.messages] 126 | }); 127 | } 128 | renderName = props => { 129 | const { user: self } = this.props; // where your user data is stored; 130 | const { user = {} } = props.currentMessage; 131 | const { user: pUser = {} } = props.previousMessage; 132 | const isSameUser = pUser._id === user._id; 133 | const isSelf = user._id === self._Id; 134 | const shouldNotRenderName = isSameUser; 135 | let firstName = user.name.split(" ")[0]; 136 | let lastName = user.name.split(" ")[1][0]; 137 | return shouldNotRenderName ? ( 138 | 139 | ) : ( 140 | 141 | 142 | {`${firstName} ${lastName}.`} 143 | 144 | 145 | ); 146 | }; 147 | renderAudio = props => { 148 | return !props.currentMessage.audio ? ( 149 | 150 | ) : ( 151 | { 164 | this.setState({ 165 | playAudio: true 166 | }); 167 | const sound = new Sound(props.currentMessage.audio, "", error => { 168 | if (error) { 169 | console.log("failed to load the sound", error); 170 | } 171 | this.setState({ playAudio: false }); 172 | sound.play(success => { 173 | console.log(success, "success play"); 174 | if (!success) { 175 | Alert.alert("There was an error playing this audio"); 176 | } 177 | }); 178 | }); 179 | }} 180 | /> 181 | ); 182 | }; 183 | renderBubble = props => { 184 | return ( 185 | 186 | {this.renderName(props)} 187 | {this.renderAudio(props)} 188 | 189 | 190 | ); 191 | }; 192 | handleAvatarPress = props => { 193 | // add navigation to user's profile 194 | }; 195 | handleAudio = async () => { 196 | const { user } = this.props; 197 | if (!this.state.startAudio) { 198 | this.setState({ 199 | startAudio: true 200 | }); 201 | await AudioRecorder.startRecording(); 202 | } else { 203 | this.setState({ startAudio: false }); 204 | await AudioRecorder.stopRecording(); 205 | const { audioPath } = this.state; 206 | const fileName = `${this.messageIdGenerator()}.aac`; 207 | const file = { 208 | uri: Platform.OS === "ios" ? audioPath : `file://${audioPath}`, 209 | name: fileName, 210 | type: `audio/aac` 211 | }; 212 | const options = { 213 | keyPrefix: AwsConfig.keyPrefix, 214 | bucket: AwsConfig.bucket, 215 | region: AwsConfig.region, 216 | accessKey: AwsConfig.accessKey, 217 | secretKey: AwsConfig.secretKey, 218 | }; 219 | RNS3.put(file, options) 220 | .progress(event => { 221 | console.log(`percent: ${event.percent}`); 222 | }) 223 | .then(response => { 224 | console.log(response, "response from rns3 audio"); 225 | if (response.status !== 201) { 226 | alert("Something went wrong, and the audio was not uploaded."); 227 | console.error(response.body); 228 | return; 229 | } 230 | const message = {}; 231 | message._id = this.messageIdGenerator(); 232 | message.createdAt = Date.now(); 233 | message.user = { 234 | _id: user._id, 235 | name: `${user.firstName} ${user.lastName}`, 236 | avatar: user.avatar 237 | }; 238 | message.text = ""; 239 | message.audio = response.headers.Location; 240 | message.messageType = "audio"; 241 | 242 | this.chatsFromFB.update({ 243 | messages: [message, ...this.state.messages] 244 | }); 245 | }) 246 | .catch(err => { 247 | console.log(err, "err from audio upload"); 248 | }); 249 | } 250 | }; 251 | messageIdGenerator() { 252 | // generates uuid. 253 | return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, c => { 254 | let r = (Math.random() * 16) | 0, 255 | v = c == "x" ? r : (r & 0x3) | 0x8; 256 | return v.toString(16); 257 | }); 258 | } 259 | sendChatToDB(data) { 260 | // send your chat to your db 261 | } 262 | handleAddPicture = () => { 263 | const { user } = this.props; // wherever you user data is stored; 264 | const options = { 265 | title: "Select Profile Pic", 266 | mediaType: "photo", 267 | takePhotoButtonTitle: "Take a Photo", 268 | maxWidth: 256, 269 | maxHeight: 256, 270 | allowsEditing: true, 271 | noData: true 272 | }; 273 | ImagePicker.showImagePicker(options, response => { 274 | console.log("Response = ", response); 275 | if (response.didCancel) { 276 | // do nothing 277 | } else if (response.error) { 278 | // alert error 279 | } else { 280 | const { uri } = response; 281 | const extensionIndex = uri.lastIndexOf("."); 282 | const extension = uri.slice(extensionIndex + 1); 283 | const allowedExtensions = ["jpg", "jpeg", "png"]; 284 | const correspondingMime = ["image/jpeg", "image/jpeg", "image/png"]; 285 | const options = { 286 | keyPrefix: AwsConfig.keyPrefix, 287 | bucket: AwsConfig.bucket, 288 | region: AwsConfig.region, 289 | accessKey: AwsConfig.accessKey, 290 | secretKey: AwsConfig.secretKey, 291 | }; 292 | const file = { 293 | uri, 294 | name: `${this.messageIdGenerator()}.${extension}`, 295 | type: correspondingMime[allowedExtensions.indexOf(extension)] 296 | }; 297 | RNS3.put(file, options) 298 | .progress(event => { 299 | console.log(`percent: ${event.percent}`); 300 | }) 301 | .then(response => { 302 | console.log(response, "response from rns3"); 303 | if (response.status !== 201) { 304 | alert( 305 | "Something went wrong, and the profile pic was not uploaded." 306 | ); 307 | console.error(response.body); 308 | return; 309 | } 310 | const message = {}; 311 | message._id = this.messageIdGenerator(); 312 | message.createdAt = Date.now(); 313 | message.user = { 314 | _id: user._id, 315 | name: `${user.firstName} ${user.lastName}`, 316 | avatar: user.avatar 317 | }; 318 | message.image = response.headers.Location; 319 | message.messageType = "image"; 320 | 321 | this.chatsFromFB.update({ 322 | messages: [message, ...this.state.messages] 323 | }); 324 | }); 325 | if (!allowedExtensions.includes(extension)) { 326 | return alert("That file type is not allowed."); 327 | } 328 | } 329 | }); 330 | }; 331 | renderAndroidMicrophone() { 332 | if (Platform.OS === "android") { 333 | return ( 334 | 351 | ); 352 | } 353 | } 354 | renderLoading() { 355 | if (!this.state.messages.length && !this.state.fetchChats) { 356 | return ( 357 | 358 | 359 | 360 | ); 361 | } 362 | } 363 | 364 | 365 | render() { 366 | const { user } = this.props; // wherever you user info is 367 | console.log('chat render', user) 368 | const rightButtonConfig = { 369 | title: 'Add photo', 370 | handler: () => this.handleAddPicture(), 371 | }; 372 | return ( 373 | 374 | 378 | {this.renderLoading()} 379 | {this.renderAndroidMicrophone()} 380 | this.onSend(messages)} 383 | alwaysShowSend 384 | showUserAvatar 385 | isAnimated 386 | showAvatarForEveryMessage 387 | renderBubble={this.renderBubble} 388 | messageIdGenerator={this.messageIdGenerator} 389 | onPressAvatar={this.handleAvatarPress} 390 | renderActions={() => { 391 | if (Platform.OS === "ios") { 392 | return ( 393 | 410 | ); 411 | } 412 | }} 413 | user={{ 414 | _id: user._id, 415 | name: `${user.firstName} ${user.lastName}`, 416 | avatar: user.avatar 417 | }} 418 | /> 419 | 420 | 421 | ); 422 | } 423 | } 424 | 425 | -------------------------------------------------------------------------------- /src/components/enterRoom.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from "react"; 2 | import { StyleSheet, Text, View, TextInput, TouchableHighlight } from "react-native"; 3 | import { ActionConst, Actions, Router, Scene } from "react-native-router-flux"; 4 | import AwsConfig from "../config/AwsConfig"; 5 | 6 | 7 | export default class enterRoom extends Component { 8 | constructor(props) { 9 | super(props) 10 | this.state = { 11 | firstName: "", 12 | lastName: "", 13 | roomName: "", 14 | enterRoom: false 15 | } 16 | this.onSubmitEdit = this.onSubmitEdit.bind(this); 17 | this.enterRoom = this.enterRoom.bind(this); 18 | } 19 | componentDidMount() { 20 | } 21 | 22 | onSubmitEdit() { 23 | const { firstName, lastName } = this.state 24 | if (firstName && lastName) { 25 | this.setState({ enterRoom }) 26 | } else { 27 | alert("please enter your name") 28 | } 29 | } 30 | 31 | enterRoom() { 32 | console.log(this.state, "state") 33 | const { firstName, lastName, roomName } = this.state 34 | const user = { 35 | _id: `${firstName}${lastName}`, 36 | name: `${firstName}${lastName}`, 37 | firstName: firstName, 38 | lastName: lastName, 39 | roomName: roomName, 40 | avatar: `https://upload.wikimedia.org/wikipedia/commons/9/93/Default_profile_picture_%28male%29_on_Facebook.jpg` 41 | } 42 | Actions.chat({user}) 43 | } 44 | render() { 45 | if (this.state.enterRoom) { 46 | return ( 47 | 48 | enter the name of the room 49 | this.setState({ roomName: text.toUpperCase() })} 52 | placeholder="room name" 53 | /> 54 | 55 | Press here to enter the chat room 56 | 57 | 58 | ); 59 | } 60 | return ( 61 | 62 | Enter Your Name 63 | this.setState({ firstName: text.trim() })} 66 | placeholder="first name" 67 | editable={true} 68 | multiline={true} 69 | /> 70 | this.setState({ lastName: text.trim() })} 73 | placeholder="last name" 74 | editable={true} 75 | multiline={true} 76 | /> 77 | 78 | Press when finished 79 | 80 | 81 | ); 82 | } 83 | } 84 | 85 | const styles = StyleSheet.create({ 86 | container: { 87 | flex: 1, 88 | backgroundColor: "#fff", 89 | alignItems: "center", 90 | justifyContent: "center" 91 | } 92 | }); 93 | -------------------------------------------------------------------------------- /src/config/AwsConfig.js: -------------------------------------------------------------------------------- 1 | import * as sensitive from "../../sensitive.json"; 2 | 3 | export default (AwsConfig = { 4 | accessKey: sensitive.ACCESS_KEY, 5 | secretKey: sensitive.SECRET_KEY, 6 | bucket: sensitive.BUCKET, 7 | keyPrefix: sensitive.keyPrefix, 8 | region: sensitive.region 9 | }); 10 | -------------------------------------------------------------------------------- /src/config/FirebaseConfig.js: -------------------------------------------------------------------------------- 1 | import firebase from "firebase"; 2 | import Rebase from "re-base"; 3 | import * as sensitive from "../../sensitive.json"; 4 | // Initialize Firebase 5 | const config = { 6 | // Initialize Firebase 7 | apiKey: sensitive.APIKEY, 8 | authDomain: sensitive.authDomain, 9 | databaseURL: sensitive.databaseURL, 10 | projectId: sensitive.projectId, 11 | storageBucket: sensitive.storageBucket, 12 | messagingSenderId: sensitive.messagingSenderId 13 | }; 14 | 15 | const app = firebase.initializeApp(config); 16 | const base = Rebase.createClass(app.database()); 17 | const firebaseDB = app.database(); 18 | export { app, base, firebaseDB }; 19 | --------------------------------------------------------------------------------