@pixelpay/capacitor-plugin 0.0.1 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -45,13 +45,17 @@ repositories {
45
45
  google()
46
46
  mavenCentral()
47
47
  jcenter()
48
+ maven { url 'https://jitpack.io' }
48
49
  }
49
50
 
50
51
 
51
52
  dependencies {
52
- implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
53
+ implementation fileTree(dir: 'libs', include: ['*.jar'])
53
54
  implementation project(':capacitor-android')
54
55
  implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
56
+ implementation 'org.bitbucket.pixelpay:sdk-java:2.0+'
57
+ implementation 'org.bitbucket.pixelpay:sdk-android:2.0+'
58
+ implementation 'org.bitbucket.pixelpay:maven-pixelpay-sdk-3ds:2.0+'
55
59
  testImplementation "junit:junit:$junitVersion"
56
60
  androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
57
61
  androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pixelpay/capacitor-plugin",
3
- "version": "0.0.1",
3
+ "version": "2.0.0",
4
4
  "description": "Native bridge with Capacitor plugin and PixelPaySDK",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -29,7 +29,7 @@
29
29
  ],
30
30
  "scripts": {
31
31
  "verify": "npm run verify:ios && npm run verify:android && npm run verify:web",
32
- "verify:ios": "cd ios && pod install && xcodebuild -workspace Plugin.xcworkspace -scheme Plugin && cd ..",
32
+ "verify:ios": "cd ios && pod install && xcodebuild -workspace Plugin.xcworkspace -scheme Plugin -destination \"platform=iOS Simulator,name=iPhone SE (3rd generation)\" && cd ..",
33
33
  "verify:android": "cd android && ./gradlew clean build test && cd ..",
34
34
  "verify:web": "npm run build",
35
35
  "lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint",