All Projects → ravi8x → Android E Commerce Paytm

ravi8x / Android E Commerce Paytm

Android e-commerce with PayTM payment gateway integration

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Android E Commerce Paytm

Dotplant2
E-Commerce CMS - Yii Framework 2 (yii2, shop)
Stars: ✭ 636 (+666.27%)
Mutual labels:  e-commerce
Jet
Jet is an e-commerce framework for Amber / Crystal
Stars: ✭ 18 (-78.31%)
Mutual labels:  e-commerce
Kdd Multimodalities Recall
This is our solution for KDD Cup 2020. We implemented a very neat and simple neural ranking model based on siamese BERT which ranked first among the solo teams and ranked 12th among all teams on the final leaderboard.
Stars: ✭ 61 (-26.51%)
Mutual labels:  e-commerce
Nopcommerce
The most popular open-source eCommerce shopping cart solution based on ASP.NET Core
Stars: ✭ 6,827 (+8125.3%)
Mutual labels:  e-commerce
Veniqa
MEVN Full Stack E-Commerce Solution. Built using MEVN Stack (Node.js, Express.js, Vue.js, MongoDB) with Developer Friendliness and Cloud Integrations in mind. Previously Powered the Veniqa New York Startup. 100% Customizable. For Demos and Documentation, Visit Official Website
Stars: ✭ 832 (+902.41%)
Mutual labels:  e-commerce
Virapro.ru
[E-commerce] Plumbing Store
Stars: ✭ 45 (-45.78%)
Mutual labels:  e-commerce
Aimeos Laravel
Laravel ecommerce package for professional, ultra fast online shops, complex B2B applications and #gigacommerce
Stars: ✭ 5,204 (+6169.88%)
Mutual labels:  e-commerce
Uikit Computer Store Template
Computer store e-commerce template
Stars: ✭ 72 (-13.25%)
Mutual labels:  e-commerce
Swish Python
💰 Swish Python Client Library
Stars: ✭ 17 (-79.52%)
Mutual labels:  e-commerce
Shopping Cart
An easy-to-use shopping cart for Laravel
Stars: ✭ 57 (-31.33%)
Mutual labels:  e-commerce
Thelia
Thelia is an open source tool for creating e-business websites and managing online content. Repo containing the new major version (v2)
Stars: ✭ 752 (+806.02%)
Mutual labels:  e-commerce
Vc Platform
VirtoCommerce Platform repository
Stars: ✭ 828 (+897.59%)
Mutual labels:  e-commerce
Elfcommerce
A headless open source Ecommerce project written in ReactJS + ExpressJS
Stars: ✭ 47 (-43.37%)
Mutual labels:  e-commerce
Go2o
基于DDD的o2o的业务模型及基础, 使用Golang+gRPC/Thrift实现
Stars: ✭ 700 (+743.37%)
Mutual labels:  e-commerce
Merx
Merx is a plugin to create online shops with Kirby 3.
Stars: ✭ 66 (-20.48%)
Mutual labels:  e-commerce
Example Storefront
Example Storefront is Reaction Commerce’s headless ecommerce storefront - Next.js, GraphQL, React. Built using Apollo Client and the commerce-focused React UI components provided in the Storefront Component Library (reactioncommerce/reaction-component-library). It connects with Reaction backend with the GraphQL API.
Stars: ✭ 471 (+467.47%)
Mutual labels:  e-commerce
Ever
Ever® - Open-Source Commerce Platform for On-Demand Economy and Digital Marketplaces
Stars: ✭ 980 (+1080.72%)
Mutual labels:  e-commerce
Smartstore
Open Source ASP.NET Core Enterprise eCommerce Shopping Cart Solution
Stars: ✭ 82 (-1.2%)
Mutual labels:  e-commerce
Vue Storefront
The open-source frontend for any eCommerce. Built with a PWA and headless approach, using a modern JS stack. We have custom integrations with Magento, commercetools, Shopware and Shopify and total coverage is just a matter of time. The API approach also allows you to merge VSF with any third-party tool like CMS, payment gateways or analytics. Ne…
Stars: ✭ 9,111 (+10877.11%)
Mutual labels:  e-commerce
Grocerystore With Server
Grocery Store with server integration
Stars: ✭ 51 (-38.55%)
Mutual labels:  e-commerce

Android E-Commerce app - PayTM Gateway

Android simple e-commerce with PayTM payment gateway integrated.

Tutorial Apk Video Demo

Android Ecommerce PayTM integration

Android Ecommerce PayTM integration

Backend REST API

This app uses the REST API built in Laravel to list down the products, manage orders and handling PayTM payment transactions.

Refer the Laravel PayTM project to know the REST API used for this project.

Changing the REST endpoint

Currenlty this repo uses the demo REST API provided. You can build the backend project and change the base url in app/build.gradle file.

productFlavors {
        dev {
            buildConfigField "String", "BASE_URL", "\"https://demo.androidhive.info/paytm/public/api/\""
            buildConfigField "String", "PAYTM_CALLBACK_URL", "\"https://securegw-stage.paytm.in/theia/paytmCallback?ORDER_ID=%s\""
            buildConfigField "boolean", "IS_PATM_STAGIN", "true"
        }

        prod {
            buildConfigField "String", "BASE_URL", "\"https://demo.androidhive.info/paytm/public/api/\""
            buildConfigField "String", "PAYTM_CALLBACK_URL", "\"https://securegw.paytm.in/theia/paytmCallback?ORDER_ID=%s\""
            buildConfigField "boolean", "IS_PATM_STAGIN", "false"
        }
    }
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].