Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare Cordova beta 0.2.0 #211

Merged
merged 4 commits into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion other-platforms-support/cordova/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "cordova-powerauth-mobile-sdk",
"title": "PowerAuth Mobile JS SDK for Cordova Mobile Apps",
"version": "0.1.0",
"version": "0.2.0",
"description": "Wultra PowerAuth Mobile JS SDK for Cordova (iOS and Android)",
"types": "typings.d.ts",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion other-platforms-support/cordova/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-powerauth-mobile-sdk" version="0.1.0">
id="cordova-powerauth-mobile-sdk" version="0.2.0">
<name>PowerAuth Mobile JS SDK</name>
<description>PowerAuth Mobile JS SDK for adds capability for authentication and transaction signing into the mobile apps</description>
<license>Apache 2.0</license>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ export abstract class NativeCordovaModule implements NativePowerAuthIfc {
protected abstract readonly pluginName: string;

callNative<T>(name: string, args: any[]): Promise<T> {
console.log(`Cordova calling method ${name}(${args})`)
return new Promise<T>(
(resolve, reject) => {
cordova.exec(
Expand Down
4 changes: 0 additions & 4 deletions testapp-cordova/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,6 @@ const patchIOSPlists = () => {
});
}

const buildAndroid = () => exec("cordova build android")
const runAndroidOnDevice = () => exec("cordova run android --device")



gulp.task("default", gulp.series(
cleanTemp,
Expand Down
11 changes: 1 addition & 10 deletions testapp-cordova/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions testapp/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading