easy_paypal 1.2.0 copy "easy_paypal: ^1.2.0" to clipboard
easy_paypal: ^1.2.0 copied to clipboard

Easy Native Paypal Checkout

Easy Paypal #

  • Native Paypal Checkout Module by InspireUI company

Inspireui

Fluxstore is a universal e-commerce app inspired by Flutter framework, made by Google. With the mission of reducing thousands of hours of business spent on designing, developing and testing a mobile app, Fluxstore comes as a complete solution for optimizing to deliver your app to the market with high productivity and cost-efficiency. It could be able to satisfy all of the business requirements including e-commerce functionalities, impressive UX design and smooth performance on both iOS and Android devices.

Android setup #

This plugin depends on com.paypal.checkout:android-sdk:1.3.2, which resolves a transitive CardinalCommerce dependency from a private Maven repository.

If the app that integrates this plugin cannot resolve org.jfrog.cardinalcommerce.gradle:cardinalmobilesdk:2.2.7-5, add this to the app's Android file:

  • File: android/settings.gradle.kts
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
    repositories {
        google()
        mavenCentral()
        maven {
            url = uri("https://cardinalcommerceprod.jfrog.io/artifactory/android")
            credentials {
                username = "paypal_sgerritz"
                password = "AKCp8jQ8tAahqpT5JjZ4FRP2mW7GMoFZ674kGqHmupTesKeAY2G8NcmPKLuTxTGkKjDLRzDUQ"
            }
        }
    }
}

If your app is on an older Gradle setup that still uses project-level repositories, the same repository block can also be added in android/build.gradle.kts under allprojects { repositories { ... } }.