cordova-plugin-ownid
v3.5.1
Published
An OwnID Cordova plugin for Android and iOS
Downloads
6
Maintainers
Readme
OwnID Apache Cordova Plugin
The OwnID Apache Cordova Plugin is a plugin for Apache Cordova that integrates native OwnID Android SDK and OwnID iOS SDK functionality into Cordova applications.
It enables seamless user authentication using OwnID by automatically attaching the OwnID WebView Bridge to the Cordova WebView.
For platform specific documentaion please check OwnID Android SDK and OwnID iOS SDK.
Requirements:
- Cordova platform version 12.x or higher for Android.
- Cordova platform version 7.x or higher for iOS.
To add OwnID Apache Cordova Plugin to your project, run the following command:
cordova plugin add cordova-plugin-ownid
Configuration
After installing the plugin, update config.xml
with the OwnID configuration.
Set OwnID application id ownid-appId
, environment (optional) ownid-env
and native logging (optional) ownid-enableLogging
:
<widget>
<preference name="ownid-appId" value="gephhajfhdefa" /> <!--Use your OwnID application id-->
<preference name="ownid-env" value="uat" /> <!--(optional) skip for production environment-->
<preference name="ownid-enableLogging" value="true" /> <!--(optional) skip for production environment-->
</widget>
Ensure that you set schema and hostname:
<widget>
<preference name="scheme" value="cordova" />
<preference name="hostname" value="localhost" />
</widget>
iOS Specific Settings
The iOS platform-specific settings include preferences for iOS and Swift versions, as well as configuration for associated domains - necessary steps for enabling Passkey authentication. To learn more, see Enable Passkey Authentication.
Update your config.xml
with following:
<platform name="ios">
<!-- Set the minimum iOS and swift version required for the app and OwnID SDK -->
<preference name="deployment-target" value="14.0" />
<preference name="pods_ios_min_version" value="14.0" />
<preference name="SwiftVersion" value="5.0" />
<config-file parent="com.apple.developer.associated-domains" target="OwnIDCordovaPluginDemo/Entitlements-Debug.plist">
<array>
<!-- Set your associated domain -->
<string>webcredentials:your.domain.com</string>
</array>
</config-file>
<config-file parent="com.apple.developer.associated-domains" target="OwnIDCordovaPluginDemo/Entitlements-Release.plist">
<array>
<!-- Set your associated domain -->
<string>webcredentials:your.domain.com</string>
</array>
</config-file>
</platform>
Supported Platforms
- iOS
- Android
License
Copyright 2024 OwnID INC.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.