Skip to content

Commit

Permalink
⬆️ update gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
aykuttasil committed Mar 31, 2019
1 parent b703b47 commit 206ee28
Show file tree
Hide file tree
Showing 12 changed files with 458 additions and 415 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- run:
name: "Publish Release on GitHub"
command: |
VERSION=v1.5.3
VERSION=v2.0.0-alpha1
ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -delete ${VERSION} androidbasichelperlib/build/outputs/artifacts
workflows:
version: 2
Expand Down
22 changes: 15 additions & 7 deletions androidbasichelperlib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ android {

dependencies {
// testImplementation "junit:junit:4.12"
testImplementation "org.robolectric:robolectric:4.1"
testImplementation "com.squareup.okhttp3:mockwebserver:3.12.1"
testImplementation "org.robolectric:robolectric:4.2"
testImplementation "com.squareup.okhttp3:mockwebserver:3.13.1"
testImplementation "androidx.test:core:1.1.0"
testImplementation 'androidx.test:runner:1.1.1'
testImplementation 'androidx.test:rules:1.1.1'
Expand All @@ -33,18 +33,26 @@ dependencies {
})
testImplementation "androidx.test.espresso:espresso-intents:3.1.1"
testImplementation "com.google.code.findbugs:jsr305:3.0.2"
testImplementation "org.mockito:mockito-core:2.23.4"
testImplementation "org.mockito:mockito-core:2.25.0"

// testImplementation "androidx.arch.core:core-testing:2.0.0"
// testImplementation "org.mockito:mockito-core:2.23.4"

implementation 'com.google.android.material:material:1.0.0'
api 'com.afollestad.material-dialogs:core:0.9.6.0'
api 'com.afollestad.material-dialogs:commons:0.9.6.0'

api 'com.afollestad.material-dialogs:core:2.6.0'
api 'com.afollestad.material-dialogs:input:2.6.0'
api 'com.afollestad.material-dialogs:files:2.6.0'
api 'com.afollestad.material-dialogs:color:2.6.0'
api 'com.afollestad.material-dialogs:datetime:2.6.0'
api 'com.afollestad.material-dialogs:lifecycle:2.6.0'

api 'com.joanzapata.iconify:android-iconify-fontawesome:2.2.2'

api 'com.code-troopers.betterpickers:library:3.1.0'
implementation 'com.blankj:utilcode:1.9.8'

implementation 'com.blankj:utilcode:1.14.1'

implementation "androidx.core:core-ktx:1.0.1"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
}
Loading

0 comments on commit 206ee28

Please sign in to comment.