First attempt to bring plugin into 2023 using mostly blunt force trauma

master
Skylar Ittner 12 months ago
parent 73820adcc3
commit 1bfc60a01d

@ -1,19 +1,22 @@
{ {
"name": "cordova-plugin-stripe-payments", "name": "cordova-plugin-stripe-payments-netsyms",
"description": "Stripe Card Entry plugin for Cordova. Available for Android and iOS.", "description": "Stripe Card Entry plugin for Cordova. Available for Android and iOS.",
"version": "0.0.8", "version": "0.0.9",
"homepage": "https://github.com/rolamix/cordova-plugin-stripe-payments#readme", "homepage": "https://source.netsyms.com/Netsyms/cordova-plugin-stripe-payments",
"author": "Rolamix <contact@rolamix.com> (https://rolamix.com)", "contributors": [
"Rolamix <contact@rolamix.com> (https://rolamix.com)",
"Netsyms Technologies <opensource@netsyms.com> (https://netsyms.com)"
],
"license": "MIT", "license": "MIT",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/rolamix/cordova-plugin-stripe-payments.git" "url": "git+https://source.netsyms.com/Netsyms/cordova-plugin-stripe-payments.git"
}, },
"bugs": { "bugs": {
"url": "https://github.com/rolamix/cordova-plugin-stripe-payments/issues" "url": "https://source.netsyms.com/Netsyms/cordova-plugin-stripe-payments/issues"
}, },
"cordova": { "cordova": {
"id": "cordova-plugin-stripe-payments", "id": "cordova-plugin-stripe-payments-netsyms",
"platforms": [ "platforms": [
"android", "android",
"ios" "ios"
@ -33,4 +36,4 @@
"ach", "ach",
"credit card" "credit card"
] ]
} }

@ -7,11 +7,11 @@
<name>Stripe Payments</name> <name>Stripe Payments</name>
<description>Cordova plugin for Stripe payments using the native Android/iOS SDKs. Supports Apple Pay and card payments.</description> <description>Cordova plugin for Stripe payments using the native Android/iOS SDKs. Supports Apple Pay and card payments.</description>
<author>Rolamix, Inc.</author> <author>Rolamix, Inc., Netsyms Technologies</author>
<license>MIT</license> <license>MIT</license>
<keywords>cordova,stripe,payments,apple pay,ach,google pay,cards,credit cards,checkout</keywords> <keywords>cordova,stripe,payments,apple pay,ach,google pay,cards,credit cards,checkout</keywords>
<repo>https://github.com/rolamix/cordova-plugin-stripe-payments</repo> <repo>https://source.netsyms.com/Netsyms/cordova-plugin-stripe-payments</repo>
<issue>https://github.com/rolamix/cordova-plugin-stripe-payments/issues</issue> <issue>https://source.netsyms.com/Netsyms/cordova-plugin-stripe-payments/issues</issue>
<engines> <engines>
<engine name="cordova" version=">=7.1.0"/> <engine name="cordova" version=">=7.1.0"/>
@ -50,7 +50,7 @@
</intent-filter> </intent-filter>
</config-file> </config-file>
<framework src="com.stripe:stripe-android:8.7.0" /> <framework src="com.stripe:stripe-android:20.25.7" />
<framework src="src/android/build-extras-stripe-payments.gradle" custom="true" type="gradleReference" /> <framework src="src/android/build-extras-stripe-payments.gradle" custom="true" type="gradleReference" />
<source-file src="src/android/RetrofitFactory.java" target-dir="src/com/rolamix/plugins/stripe/" /> <source-file src="src/android/RetrofitFactory.java" target-dir="src/com/rolamix/plugins/stripe/" />
@ -71,9 +71,8 @@
</feature> </feature>
</config-file> </config-file>
<framework src="Stripe" type="podspec" spec="~> 15.0.0" /> <framework src="Stripe" type="podspec" spec="~> 23.9.2" />
<framework src="Alamofire" type="podspec" spec="~> 4.8.1" /> <framework src="Alamofire" type="podspec" spec="~> 4.8.1" />
<framework src="CardIO" type="podspec" spec="~> 5.4.1" />
<!-- https://github.com/cordova-develop/cordova-plugin-pods3/blob/master/plugin.xml --> <!-- https://github.com/cordova-develop/cordova-plugin-pods3/blob/master/plugin.xml -->
<!-- <podspec> <!-- <podspec>
<config> <config>

@ -1,12 +1,12 @@
dependencies { dependencies {
implementation 'com.stripe:stripe-android:8.7.0' implementation 'com.stripe:stripe-android:20.25.7'
// Not integrating Google Pay just yet due to Google's requirements for launching // Not integrating Google Pay just yet due to Google's requirements for launching
// We can do this later. // We can do this later.
// implementation 'com.google.android.gms:play-services-wallet:16.0.1' // implementation 'com.google.android.gms:play-services-wallet:16.0.1'
/* Cordova doesn't support AndroidX support libraries yet */ /* Cordova doesn't support AndroidX support libraries yet */
implementation 'com.android.support:support-v4:28.+' // implementation 'com.android.support:support-v4:28.+'
implementation 'com.android.support:appcompat-v7:28.+' // implementation 'com.android.support:appcompat-v7:28.+'
/* Needed for RxAndroid */ /* Needed for RxAndroid */
implementation 'io.reactivex:rxandroid:1.2.1' implementation 'io.reactivex:rxandroid:1.2.1'

Loading…
Cancel
Save