Error building the vidyo.io-connector-react-native sample app - vidyo

I cloned the project and followed the insctructions in the readme that basically say to extract a zip and move to the right place. The built and got this error:
/Users/**/vidyo/vidyo.io-connector-react-native/ios/VidyoConnectorView.h:14:9: 'Lmi/VidyoClient/VidyoConnector_Objc.h' file not found
Is this a known issue when using the Vidyo react native SDK?

This error means that it cannot find the public headers which are located inside. You need to download the VidyoClientIOS/Android SDK and place it in the specified path.
Download the latest Vidyo.io Android & iOS SDK packages:
Unzip VidyoClient-AndroidSDK folder and move contents of VidyoClient-AndroidSDK/lib/android to VidyoConnector-react-native/android/app/libs/android
Unzip VidyoClient-iOSSDK folder and move contents of VidyoClient-iOSSDK/lib/ios to VidyoConnector-react-native/ios/lib/ios

Related

Aosp Download Issue

When i have downloaded android 10.0.0_r1 aosp code from the android source it took almost 150gb for the first time. Actually many said its about 50gb. Later i tried downloaded the android 4.0.0_r1 i have got just 20gb. but some folders got installed with bionic.git like that.There is no envsetup.sh file inside build.git folder and another issue was all files got downloaded in the platform folder not into my aosp folder which i set for download.can any one provide clear steps to download the source?

Error on publishing Android project

It shows unable to open file for read: no such file or directory
(the directory shown in the error message should be linking to the Android SDK folder, the directory shown in the error message is wrong and i tried to rename the folders to make the directory correct but it doesn't work as the directory shown in error message change every time...)
Is there any way to fix it? i have reinstalled it but still doesn't work. Thanks guys
You shouldn't change the name of the SDK Folders.
I suggest you to install a fresh Android SDK from
http://services.smartface.io/File/Download/installer_r23.0.2-windows.exe
After that, set the path again from File -> Project Details -> Android SDK tab.

Where to find sencha touch JSB file?

I am trying to use spket plugin for code complete suggestions in eclipse using this tutorial : https://steve0hh.wordpress.com/2012/04/20/how-to-set-up-sencha-touch-code-assist-in-aptana/
The problem is that I cannot find jsb3 file in my downloaded sdk zip.
I am using sencha-touch-2.1.1-commercial.
Ok I found the file which can be used :
http://dev.europalab.com/tizportdev/demos/Senchtest/touch.jsb3
Download this and put it into downloaded sencha touch folder(touch-2.1.1) as sibling of src folder and follow remaining steps as it is.
If above link is not working try this : https://docs.google.com/file/d/0B0EOCoTxRKgveFZlc2x2aDlpWFE/edit?usp=sharing

Copying facebook-ios-sdk and configuring the Xcode project

I have gone through this document :Getting Started with the Facebook SDK for iOS v3.1
I have successfully configured my Xcode project by following it.
But I want to do it without adding the Facebook.framework.
As previously we used to only add the "src" folder which we used to clone from :Facebook SDK for iOS - Github. Why can't I just copy the "src" folder and configure my project.
I want to play around with FBFriendPickerViewController.m (dot m) file. Which I am not able to view if I follow the standard tutorial. But is available in the "src" folder.
Please how can I do that ? And it also seems that FbGraph.h file doesn't exist.
Please help.
If you want to play with the source, go to:
https://github.com/facebook/facebook-ios-sdk/
After getting the code, run this script to build the framework locally:
<Install Location>/scripts/build_framework.sh
This will drop the framework in the folder:
<Install Location>/build
Follow the same instructions in the Getting Started to include the Facebook SDK, however, you will get the framework from your local build folder.
Note: You'll likely have to modify the build search path in Xcode if you're swapping out, say one of the sample projects (that was looking for the Framework in a particular place).

How to run phone gap with xcode4?

Since moving to XCode4, I have been getting errors like:
/VERSION: No such file or directory
cp: /javascripts/phonegap..js: No such file or directory
cp: /javascripts/phonegap..min.js: No such file or directory
error: /VERSION: No such file or directory
for projects that were working under XCode3.
Open XCodes Preferences, and navigate to Source Trees. If there is no PhoneGapLib entry there, try adding a new setting with the following values:
Setting Name: PHONEGAPLIB
Display Name: Phone Gap Lib
Path: /Users//Documents/PhoneGapLib
Note that the path should be to the location of your PhoneGapLib folder, and that it may not be in your documents folder, depending on how you installed PhoneGap.
I just learned about a great web service recently made available by Nitobi (makes of PG), which will automatically generate the necessary PhoneGap files you need for use in Xcode 4.
Just enter your project name, hit a button and they'll generate a zip file for you to download. This lets you set up a new project without messing with the command line.
You could set up a new project, then migrate your older project files over.
Did you search Google for this error?
I'm a bit of a noob with PhoneGap and Xcode still, but I know there have been recent issues with PG and Xcode 4. Perhaps you're experiencing the same issues as the commenters to this post: PhoneGap + XCode4 (and more specifically, here).