-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
Clean some bugs out and move to JitPack
- Loading branch information
There are no files selected for viewing
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Mon Sep 24 11:42:10 WAT 2018 | ||
#Wed Jun 05 18:05:04 WAT 2019 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ ext{ | |
libraryDescription = 'Payment Android UI Library for PayStack' | ||
siteUrl = 'https://github.com/knightbenax/Pentecost' | ||
gitUrl = 'https://github.com/knightbenax/Pentecost.git' | ||
libraryVersion = '1.1.12' | ||
libraryVersion = '1.1.13' | ||
developerId = 'knightbenax' | ||
developerName = 'Ashefor Reuben Bezaleel' | ||
developerEmail = '[email protected]' | ||
|
@@ -22,33 +22,30 @@ ext{ | |
} | ||
|
||
android { | ||
compileSdkVersion 27 | ||
compileSdkVersion 30 | ||
lintOptions { | ||
abortOnError false | ||
} | ||
defaultConfig { | ||
minSdkVersion 16 | ||
targetSdkVersion 27 | ||
versionCode 9 | ||
versionName '1.1.12' | ||
targetSdkVersion 30 | ||
versionCode 10 | ||
versionName '1.1.13' | ||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" | ||
} | ||
|
||
} | ||
|
||
|
||
//./gradlew clean build bintrayUpload | ||
|
||
|
||
dependencies { | ||
implementation fileTree(include: ['*.jar'], dir: 'libs') | ||
implementation ('com.android.support:appcompat-v7:27.1.1') | ||
testImplementation 'junit:junit:4.12' | ||
androidTestImplementation 'com.android.support.test:runner:1.0.2' | ||
implementation 'androidx.appcompat:appcompat:1.3.0' | ||
testImplementation 'junit:junit:4.13.2' | ||
androidTestImplementation 'androidx.test.ext:junit:1.1.2' | ||
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' | ||
implementation 'com.android.support:cardview-v7:27.1.1' | ||
//https://github.com/GwonHyeok/StickySwitch | ||
compile 'com.github.GwonHyeok:StickySwitch:0.0.15' | ||
implementation "androidx.cardview:cardview:1.0.0" | ||
implementation 'com.github.GwonHyeok:StickySwitch:0.0.16' | ||
} | ||
|
||
repositories { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package app.ephod.pentecost.library.paystack; | ||
|
||
public enum PAYMENT_FORM_TYPE { | ||
CARD(0), | ||
BANK(1); | ||
|
||
private final int value; | ||
|
||
PAYMENT_FORM_TYPE(final int newValue) { | ||
value = newValue; | ||
} | ||
|
||
public int getValue() { return value; } | ||
} |