2CheckoutWrapper


Source link: https://github.com/ViksaaSkool/2CheckoutWrapper

2CheckoutWrapper

Simple wrapper library for acquiring 2Checkout payment gateway token.

2Checkout is payment gateway that is widely used in almost every country in the world. It accepts Credit Cards, PayPal, and Debit Cards. Their official documentation page is here. Unfortunately, they don't have dedicated Android SDK, but the official Java SDK should do the trick.

Yet, this might be too much and not all is needed on Android side. In general sense the payment is done on the server side and the only thing you need to do is to get checkout token - which is generated with the appropriate 2chekout credentials (sellerId, publisherKey and environment) and credit card details. That's where this library comes handy - it wraps the official js library, makes a call and returns the token to you.

Demo

The gifs above are form the demo application made to display the usage of the library. Note: the credit card form is not part of 2CheckoutWrapper and is sparate library, that you can check out here.

Usage

Add it in your root build.gradle at the end of repositories:

allprojects {

repositories {

 ...
 maven {
 url "https://jitpack.io" 
}

}
  
}

and then in dependencies:

 dependencies {

 compile 'com.github.ViksaaSkool:2CheckoutWrapper:v1.1'  
}

Here is how you utilze the library in your code:

//or in your Fragment; don't forget to impelement the TwoCheckoutTokenCallback  public class MyActivity extends AppCompatActivity implements TwoCheckoutTokenCallback{
  private TwoCheckoutWrapper mTwoCheckoutWrapper;
protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main_demo);

 //set up the wrapper

mTwoCheckoutWrapper = new TwoCheckoutWrapper(this);

mTwoCheckoutWrapper.setTwoCheckoutTokenCallback(this);

//call for the token 

getTokenMethod();

}

 public void getTokenMethod(){

//create the credit card object

 TwoCheckoutCard twoCheckoutCard = new TwoCheckoutCard();

  //get credit card values form your field(s)

 twoCheckoutCard.setCcNo("creditCardNumber");

 twoCheckoutCard.setCvv("cVV");

 twoCheckoutCard.setExpMonth("month");

 twoCheckoutCard.setExpYear("year");

  //set these in local.properties and asign them via build.gradle

 twoCheckoutCard.setSellerId(BuildConfig.SELLER_ID);

 twoCheckoutCard.setPublishableKey(BuildConfig.PUBLISHABLE_KEY);

  //call for the token

 mTwoCheckoutWrapper.get2CheckoutToken(twoCheckoutCard, BuildConfig.ENVIRONMENT);

 
}

@Override
  public void on2CheckoutTokenSuccess(String token) {

//do something with the token

}

@Override
  public void on2CheckoutTokenError(String error) {

  //handle the error

}
  
}
 

License

The MIT License (MIT)  Copyright (c) 2016 Viktor Arsovski  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 

Developed By

Viktor Arsovski

Resources

A flexible view for providing a limited rect window into a large data set, just like a two-dimensional RecyclerView.

ProbeTools displays the data from the Database and SharedPreferences in the browser.

Showcases different components that come with the Leanback library for Android TV.

A cute library to implement SearchView in a Material Design Approach.

Library to use Recycler View easily.

Pacman is a lightweight and easy to use Parallel API Calls Manager.

You might need to execute multiple API calls at once to speed up loading of your app and proceed only when you have the data from all the required API calls. Managing this using normal boolean flags or such methods can be a pain and can result to incorrect data or behaviour.

That is where Pacman comes to play, as you just set it up with some CallGroup, make the API calls and then update Pacman as and when you get a response from the call.

After all the calls are done processing, Pacman will fire a callback to an attached listener (which you have set up) and then you have do whatever processing you needed to do after the calls were done.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes