I have a requirement like integrate hybrid app into ios application? Is it possible or not? Currently iOS application accessing SUP server as middileware and downloading the hibrid app. Now i want to change as look and feel like native. How to custamize(integrate) the both codes. Thanks in advance..
I find the solution for this issue. Just follow the below links:
Here as a developer we have to take bit care of 2 things. In these steps chance to do mistake:
1) Adding hybrid app folder: While adding the hybrid app folder should select second option.
2) Resource path for hybrid app:
suppose to give resource path like this in iOS.
NSString *path = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"HybridAppFolderName"];
But here just give to : NSString *path = @"HybridAppFolderName";
I hope this will help to you..