I am pretty new to Oracle MAF framework. I want to store a string to iOS keychain and retrieve later. I have searched for a tutorial and still unable to find.
Please share any tutorial if anyone has done this before. Also I want to know whether we can use a Cordova plugin such as https://www.npmjs.com/package/cordova-plugin-ios-keychain directly in the MAF project?
I was able to resolve the problem. I would like to share how did I manage to do. Cordova plugin can be used in the MAF application. MAF app's java code can invoke javascript methods in the cordova plugin. Or we can write a javascript class to do the bridging between MAF app and the cordova plugin.
This is a good tutorial for your reference.
https://blogs.oracle.com/mobile/integrating-a-custom-cordova-plugin-into-a-maf-app
Related
I am looking to add in-app subscriptions to the mac desktop app so I can submit to app store.
I have the code written for iOS using the cordova plugin: https://github.com/AlexDisler/cordova-plugin-inapppurchase
But for electron there exists no such plugin.
So I can use the native swift code from the plugin, but need a way to write a custom plugin so I can call swift methods from javascript running the Electron app.
Please let me know how to approach this, or point me to the correct resources.
Thanks You
i'm an iOS developer, but newbie to the kumulos, after creating app in the kumulos website i'm stuck in how to it implement Xcode. and the documentation inside the kumulos website isn't rich and helpful for that matter, any advice will be appreciated.
Thank you for you all.
Mark from Kumulos here. Assuming you have enabled the App Build feature, created tables to store your data, created API methods to access your data and then deployed your API methods to the Kumulos API servers. Download your SDK from your Kumulos console and follow these instructions to integrate the SDK into your Xcode project.
Unzip the bindings.zip file
Navigate to the IOS_OSX folder
Open your Xcode project
Drag and drop the Kumulos.h, Kumulos.m, and libKumulos.h files into your Xcode project.
If building for iOS, also add libKumulos_iOS_vx.x.x.a to the project. If building for OSX, add libKumulos_OSX_vx.x.x.a to the project instead
We've updated our docs site to make this process clearer. For any other queries, please do not hesitate to contact technical support from within your console.
Mark.
I need a way to check the app store for the latest update of the app.
One way of doing this is to make an api call to see what the latest version is and force the user to download it. However this is reliant on an internet connection; a better way is to sync the app with the app store. There is a native module called iversion, does anyone know of a titanium equivalent.
https://github.com/nicklockwood/iVersion
Inspired by Harpy project the benCoding.iOS.Tools module allows you to query the AppStore and return the latest version. Check README for further details.
I have a native app for iOS and am being tasked to create a new app that includes portions/sections of that original native app within this new project. The caveat being that the app I am now tasked to develop must be done with Phonegap/Cordova.
My question is, what options do I have for utilizing the native code within the Phonegap project, or does the same functionality all need to be rewritten in HTML5/JS? I'm new to Phonegap so I don't fully know it's capabilities.
Generally phonegap apps are coded in javascript, css, html and where ever they need access to the native layer, they use phonegap plugins to access the native functionality. If you want use your existing code for integration into a phonegap app, you can do it by wrapping your code using phonegap plugin architecture and create plugins for the functionality from the code that you wish to reuse. Then you call those plugins where ever required in your application.
The below link is good starting point for creating plugins.
http://docs.phonegap.com/en/3.4.0/guide_hybrid_plugins_index.md.html#Plugin%20Development%20Guide
I'd like to integrate a FastPdfKit Reader into my PhoneGap application. That is, the PDF reader should be opened within the PhoneGap app, so that the application-related navigation is still visible.
Where do I best start?
Do you know about any publicly available code that gives an example on how to achieve this?
It sounds like what you are looking for is creating a PhoneGap plugin.
http://wiki.phonegap.com/w/page/36752779/PhoneGap%20Plugins
Here are some tutorials on making plugins for PhoneGap:
http://hiediutley.com/2011/04/15/phonegap-tutorial-series-6-writing-your-own-plugin/