Giter Club home page Giter Club logo

Comments (3)

aabhasr1 avatar aabhasr1 commented on August 15, 2024

Can you share the code on how you have integrated the sdk.

from nextgen-android.

ilangomaths avatar ilangomaths commented on August 15, 2024

@aabhasr1 I just followed the sample code from android integration documentation https://docs.cashfree.com/docs/31-initiate-payment-native-checkout#sample-code. I registered for callbacks onCreate like

       try {
            CFPaymentService.getInstance().setCheckoutCallback(this)
        } catch (e: CFException) {
            e.printStackTrace()
        }
 

and calling drop checkout payment gateway like

private fun startPayment(token: PaymentToken) {
        if (token.cftoken.isNullOrEmpty() || token.order_id.isNullOrEmpty()) {
            toast("Something went wrong. Please try again later")
            return
        }

        try {
            val cfEnvironment =
                if (SERVER_MODE == "1") CFSession.Environment.SANDBOX else CFSession.Environment.PRODUCTION

            val cfSession =
                CFSession.CFSessionBuilder().setEnvironment(cfEnvironment)
                    .setOrderId(token.order_id)
                    .setOrderToken(token.cftoken).build()
            val cfTheme = CFTheme.CFThemeBuilder().setNavigationBarBackgroundColor("#fc2678")
                .setNavigationBarTextColor("#ffffff")
                .setButtonBackgroundColor("#fc2678")
                .setButtonTextColor("#ffffff")
                .setPrimaryTextColor("#000000")
                .setSecondaryTextColor("#000000")
                .build()
            val cfPaymentMethods = CFPaymentComponent.CFPaymentComponentBuilder()
                .add(CFPaymentComponent.CFPaymentModes.CARD)
                .add(CFPaymentComponent.CFPaymentModes.UPI)
                .build()
            val cfDropPayment =
                CFDropCheckoutPayment.CFDropCheckoutPaymentBuilder()
                    .setSession(cfSession)
                    .setCFUIPaymentModes(cfPaymentMethods)
                    .setCFNativeCheckoutUITheme(cfTheme)
                    .build()
            val gatewayService = CFPaymentGatewayService.getInstance()
            gatewayService.doPayment(this@PaymentActivity, cfDropPayment)
        } catch (e: CFException) {
            e.printStackTrace()
        }
    }

Payment integration is working perfectly (able to pay on sandbox mode), but only callbacks are not called on the activity.

from nextgen-android.

aabhasr1 avatar aabhasr1 commented on August 15, 2024

@ilangomaths is this issue resolved?

from nextgen-android.

Related Issues (3)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.