Skip to content

Commit

Permalink
Update all library dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ibrahimlawal committed Oct 26, 2017
1 parent e0a5d9f commit 7af8552
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ You do not need to clone this repository or download the files. Just add the fol

```gradle
dependencies {
compile 'co.paystack.android:paystack:3.0.5'
compile 'co.paystack.android:paystack:3.0.6'
}
```

Expand Down
20 changes: 11 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.1'
classpath 'com.android.tools.build:gradle:3.0.0'
classpath 'org.robolectric:robolectric-gradle-plugin:1.1.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand All @@ -17,16 +18,17 @@ buildscript {
allprojects {
repositories {
jcenter()
google()
}
}

ext {
compileSdkVersion = 25
compileSdkVersion = 27
minSdkVersion = 16
targetSdkVersion = 25
versionCode = 16
targetSdkVersion = 27
versionCode = 17

buildToolsVersion = "25.0.1"
supportLibraryVersion = "25.3.1"
versionName = "3.0.5"
buildToolsVersion = "27.0.0"
supportLibraryVersion = "27.0.0"
versionName = "3.0.6"
}
3 changes: 3 additions & 0 deletions example/src/main/java/co/paystack/example/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
import android.widget.TextView;
import android.widget.Toast;

import org.json.JSONException;
import org.json.JSONObject;

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.URL;
Expand Down
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
org.gradle.jvmargs=-Xmx2048M
org.gradle.jvmargs=-Xmx4096M
android.enableAapt2=false
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed Apr 05 11:44:45 WAT 2017
#Thu Oct 26 08:59:13 WAT 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
2 changes: 1 addition & 1 deletion paystack/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dependencies {
compile 'com.google.code.gson:gson:2.8.0'
compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
compile 'com.squareup.okhttp3:okhttp:3.4.2'
compile 'com.squareup.okhttp3:okhttp:3.7.0'
compile "com.android.support:appcompat-v7:$rootProject.ext.supportLibraryVersion"

compile 'co.paystack.android.design.widget:pinpad:1.0'
Expand Down

0 comments on commit 7af8552

Please sign in to comment.