com-jetbeep-plugins-sdk
v0.0.50
Published
Cordova plugin for Jetbeep SDK solution.
Downloads
112
Maintainers
Readme
Welcome to Jetbeep Corodova plugin
Here you can find Android and iOS Cordova plugins. If you want native SDK you can find it at Android link and iOS link.
Install process using npm:
Get in into your terminal and call your project folder cordova plugin add com-jetbeep-plugins-sdk
.
Android
- Get in the
jetbeepCordovaDemoApp
folder at your command line. - Add Jetbeep plugin
cordova plugin add com-jetbeep-plugins-sdk
- Add Android platform
cordova platform add android
if you don't have it.
iOS integration
After adding a plugin to your project and installing relative Cocoapods
Get in the
jetbeepCordovaDemoApp
folder at your command line.Add Jetbeep plugin
cordova plugin add com-jetbeep-plugins-sdk
cordova plugin add cordova-plugin-add-swift-support
If you don't have the iOS platform
cordova platform add ios
.Go to
platforms\ios
Set to
platform :ios, '13.0'
Open
Podfile
and add at the end of the file:post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES' end end end
Save changes
Call
pod update
Don't forget to call
pod update
when you play with Cocoapods in the future.**Open your project and bump the target version to ios 13
Now you are ready to go!