Code Monkey home page Code Monkey logo

android-pay's Introduction

Android-Pay

中文

A pay library for Android, and which support Wechat pay and Ali pay. And developer can easily use Wechat pay in two line code. And developer can easily use Ali pay in three line code.

Setup

gradle

add these code in the file build.gradle as follow:

dependencies {
    //add pay library
    compile 'io.github.mayubao:pay_library:1.0.1'
}

maven

<dependency>
  <groupId>io.github.mayubao</groupId>
  <artifactId>pay_library</artifactId>
  <version>1.0.1</version>
  <type>pom</type>
</dependency>

Usage

Wechat Pay

        //1.create request for wechat pay
        WechatPayReq wechatPayReq = new WechatPayReq.Builder()
                .with(this) //activity instance
                .setAppId(appid) //wechat pay AppID
                .setPartnerId(partnerid)//wechat pay partner id
                .setPrepayId(prepayid)//pre pay id
//								.setPackageValue(wechatPayReq.get)//"Sign=WXPay"
                .setNonceStr(noncestr)
                .setTimeStamp(timestamp)//time stamp
                .setSign(sign)//sign
                .create();
        //2. send the request with wechat pay
        PayAPI.getInstance().sendPayRequest(wechatPayReq);


        //set the callback for wechat pay
        //wechatPayReq.setOnWechatPayListener(new OnWechatPayListener);

Notes:WechatPayReq have no method to set the money, because the money info is include in the parameter 'prepayid'.

Ali Pay

First way(Not Recommend, and its partner rsa private key export in the client , it is very dangerous!)

        //step 1 create config for ali pay
        AliPayAPI.Config config = new AliPayAPI.Config.Builder()
                .setRsaPrivate(rsa_private) // rsa private key from partner (pkcs8 format)
                .setRsaPublic(rsa_public)//ali rsa public key
                .setPartner(partner) //set partner
                .setSeller(seller) //set partner seller accout
                .create();

        //step 2 create reqeust for ali
        AliPayReq aliPayReq = new AliPayReq.Builder()
                .with(activity)//Activity instance
                .apply(config)// the above custome config
                .setOutTradeNo(outTradeNo)//set unique trade no
                .setPrice(price)//set price
                .setSubject(orderSubject)//set order subject
                .setBody(orderBody)//set order detail
                .setCallbackUrl(callbackUrl)//set callback for pay reqest
                .create()//
                .setOnAliPayListener(null);//

        //step 3 send the request for ali pay
        PayAPI.getInstance().sendPayRequest(aliPayReq);

        // set the ali pay callback
        //aliPayReq.setOnAliPayListener(new OnAliPayListener);

Second way(Highly Recommend)

        //step 1 create raw ali pay order info
        String rawAliOrderInfo = new AliPayReq2.AliOrderInfo()
                .setPartner(partner) //set partner
                .setSeller(seller)  //set partner seller accout
                .setOutTradeNo(outTradeNo) //set unique trade no
                .setSubject(orderSubject) //set order subject
                .setBody(orderBody) //set order detail
                .setPrice(price) //set price
                .setCallbackUrl(callbackUrl) //set callback for pay reqest
                .createOrderInfo(); //create ali pay order info


        //step 2 get the signed ali pay order info
        String signAliOrderInfo = getSignAliOrderInfoFromServer(rawAliOrderInfo);

        //step 3 step 3 send the request for ali pay
        AliPayReq2 aliPayReq = new AliPayReq2.Builder()
                .with(activity)//Activity instance
                .setSignedAliPayOrderInfo(signAliOrderInfo)
                .setRawAliPayOrderInfo(rawAliOrderInfo)//set the ali pay order info
                .setSignedAliPayOrderInfo(signAliOrderInfo) //set the signed ali pay order info
                .create()//
                .setOnAliPayListener(null);//
        PayAPI.getInstance().sendPayRequest(aliPayReq);


        //set the ali pay callback
        //aliPayReq.setOnAliPayListener(new OnAliPayListener);

Proguard

#pay_library
-dontwarn io.github.mayubao.pay_library.**
-keep class io.github.mayubao.pay_library.** {*;}

#wechat pay
-dontwarn com.tencent.**
-keep class com.tencent.** {*;}


#alipay
-dontwarn com.alipay.**
-keep class com.alipay.** {*;}

-dontwarn  com.ta.utdid2.**
-keep class com.ta.utdid2.** {*;}

-dontwarn  com.ut.device.**
-keep class com.ut.device.** {*;}

-dontwarn  org.json.alipay.**
-keep class corg.json.alipay.** {*;}

Document

wehcat pay official document

https://pay.weixin.qq.com/wiki/doc/api/app/app.php?chapter=8_5

ali pay official document

https://doc.open.alipay.com/docs/doc.htm?spm=a219a.7629140.0.0.sdGXaH&treeId=204&articleId=105296&docType=1

Help

If it is helpful to you, could you buy me a cup of coffee?

Wechat

Ali

支付宝支付

Lisence

Copyright 2017 mayubao

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

android-pay's People

Contributors

mayubao avatar

Watchers

 avatar  avatar

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.