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

master
Skylar Ittner 11 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.",
"version": "0.0.8",
"homepage": "https://github.com/rolamix/cordova-plugin-stripe-payments#readme",
"author": "Rolamix <contact@rolamix.com> (https://rolamix.com)",
"version": "0.0.9",
"homepage": "https://source.netsyms.com/Netsyms/cordova-plugin-stripe-payments",
"contributors": [
"Rolamix <contact@rolamix.com> (https://rolamix.com)",
"Netsyms Technologies <opensource@netsyms.com> (https://netsyms.com)"
],
"license": "MIT",
"repository": {
"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": {
"url": "https://github.com/rolamix/cordova-plugin-stripe-payments/issues"
"url": "https://source.netsyms.com/Netsyms/cordova-plugin-stripe-payments/issues"
},
"cordova": {
"id": "cordova-plugin-stripe-payments",
"id": "cordova-plugin-stripe-payments-netsyms",
"platforms": [
"android",
"ios"
@ -33,4 +36,4 @@
"ach",
"credit card"
]
}
}

@ -7,11 +7,11 @@
<name>Stripe Payments</name>
<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>
<keywords>cordova,stripe,payments,apple pay,ach,google pay,cards,credit cards,checkout</keywords>
<repo>https://github.com/rolamix/cordova-plugin-stripe-payments</repo>
<issue>https://github.com/rolamix/cordova-plugin-stripe-payments/issues</issue>
<repo>https://source.netsyms.com/Netsyms/cordova-plugin-stripe-payments</repo>
<issue>https://source.netsyms.com/Netsyms/cordova-plugin-stripe-payments/issues</issue>
<engines>
<engine name="cordova" version=">=7.1.0"/>
@ -50,7 +50,7 @@
</intent-filter>
</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" />
<source-file src="src/android/RetrofitFactory.java" target-dir="src/com/rolamix/plugins/stripe/" />
@ -71,9 +71,8 @@
</feature>
</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="CardIO" type="podspec" spec="~> 5.4.1" />
<!-- https://github.com/cordova-develop/cordova-plugin-pods3/blob/master/plugin.xml -->
<!-- <podspec>
<config>

@ -1,12 +1,12 @@
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
// We can do this later.
// implementation 'com.google.android.gms:play-services-wallet:16.0.1'
/* Cordova doesn't support AndroidX support libraries yet */
implementation 'com.android.support:support-v4:28.+'
implementation 'com.android.support:appcompat-v7:28.+'
// implementation 'com.android.support:support-v4:28.+'
// implementation 'com.android.support:appcompat-v7:28.+'
/* Needed for RxAndroid */
implementation 'io.reactivex:rxandroid:1.2.1'

Loading…
Cancel
Save