How to import native iOS framework in Kony IDE - ios

Im trying to integrate an iOS framework in Kony. I've tried to follow the documentation to import a native framework using the Manage Native Function API(s) menu, however I get the following error: "Error while importing framework .zip extract error: undefined".
Any help is appreciated. Thanks!

I haven't imported for iOS. But below are the steps to import or add a native framework to the project.
We are using Kony Visualizer Enterprise 7.3. Please find the steps below.
Goto Edit -> Manage Native Function
Select Import option under IOS tab
Select the valid .zip IOS framework file which you need to import.
If you are getting error, please double check if the file is the right/valid one. Try to import any other framework zip to verify if it is working.
Alternative if you want to use existing one, please select Add
Hope this helps. Thanks.

Related

Can't add Flurry to my Swift project

I've stuck with a Flurry: I add Flurry (Analytics only) to my swift project according this guide:
https://developer.yahoo.com/flurry/docs/integrateflurry/ios-manual/
After all steps done it throws error:
Has anyone encountered a similar one?
It's look like library not found.
Check Link Library With Libraries on Build Phases in Xcode.
Read documentation about Import Flurry Libraries:
https://developer.yahoo.com/flurry/docs/integrateflurry/ios-manual/?guccounter=1#import-flurry-libraries
I integrated Flurry it works perfectly. You are making mistake here,you are opening project using this projectname.xcodeproj rather than this file projectname.xcworkspace . After install pod you must open project using this projectname.xcworkspace
For your reference i updated sample project please take a look if you could not get it. Sample Project

Swift import got error "Could not build objective-C module 'Twitter'" while including a framework

I was taking the iTunesU course CS193P Lecture9.
I got this error while trying to import the framework.
I've already turn on "Allow Non-modular Includes In Framework Modules"
The "Twitter" framework was built successfully and already added in the "SmashTag"'s Linked Frameworks and Libraries.
navigator
Does any one have some clue for this? Xcode version 8.1 and Swift 3.0
Thank you.
You need to convert the code to swfit 3 and rebuild the Twitter framework in
the same workspace.
The answer here described how to convert the code.
Smashtag (Stanford CS193p Twitter client) not loading on iPhone

compilation error in Integrating apple video kit

I have integrating Apple purchased videokit in a separate project and it was working fine, but when I am integrating in am old project which already have lot of stuff then it is throwing an error while compiling.
The error is: Image
import "VKPlayerViewController.h"
import "VKDecodeManager.h"
import "VKPlayerController.h"
While importing these headers in my bridging header file it is giving the following error:
Failed to import bridging header '/Users/iOS2/.../SVN/../my-Bridging-Header.h'
I have also integrated 3rd party sdk Linphone before integrating ios videokit in my project. The problem could be due to multiple header paths for both the sdks which i'm not able to find out.
Please help!

Facebook SDK for iOS: Where is the wizard?

Trying to follow Facebook's instructions for adding the iOS SDK but they lost me at step 1.
The download is a zip file containing the following:
Anyone have any idea where this wizard is?
Hey there is nothing related with the wizard. Now you have the SDK containing the required framework. Now simply use those frameworks in your project. For further help follow "https://developers.facebook.com/docs/ios/getting-started".

installing AWS ios sdk in swift project

I'm trying to add the AWS SDK to my xcode project that is written in swift.
I followed these steps: http://mobile.awsblog.com/post/Tx2AA7ZHB1FK0G1/Version-2-of-the-AWS-SDK-for-iOS-Developer-Preview to create a Bridge-Header file, and add the SDK itself to my project.
The problem is that when I try to build the app I get an error now... the Bridge Header cannot be imported because one of the files in the AWS SDK (AWSModel.h) has an error. This file tries to import Mantle/Mantle.h, and the error reads "Mantle/Mantle.h file not found"
do I need to add this file to my project as well? If so, how would I go about doing that? The only frameworks I'm using are Facebook SDK, and I would like to add AWS as well.
There is a working sample app on GitHub. You should follow README and see if you can compile the app. It should help you understand how to set up the project.

Resources