Skip to content

Commit

Permalink
Update third-party dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mars885 committed May 24, 2019
1 parent de91679 commit a619a20
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
10 changes: 7 additions & 3 deletions common/constants.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,15 @@ project.ext {
minSdk = 21

appCompatLibraryVersion = "1.0.2"
supportLibraryVersion = "1.0.0"
cardViewLibraryVersion = "1.0.0"
browserLibraryVersion = "1.0.0"
recyclerViewLibraryVersion = "1.0.0"
annotationLibraryVersion = "1.0.0"
adapsterLibraryVersion = "1.0.12"

coreKtxLibraryVersion = "1.0.1"
adapsterLibraryVersion = "1.0.5"
jUnitVersion = "4.12"
testRunnerVersion = "1.1.0-alpha4"
testRunnerVersion = "1.1.0"

releaseRepoName = "maven"
releaseGroupId = "com.paulrybitskyi.persistentsearchview"
Expand Down
5 changes: 3 additions & 2 deletions persistentsearchview/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])

implementation "androidx.appcompat:appcompat:${rootProject.appCompatLibraryVersion}"
implementation "androidx.cardview:cardview:${rootProject.supportLibraryVersion}"
implementation "androidx.annotation:annotation:${rootProject.supportLibraryVersion}"
implementation "androidx.cardview:cardview:${rootProject.cardViewLibraryVersion}"
implementation "androidx.recyclerview:recyclerview:${rootProject.recyclerViewLibraryVersion}"
implementation "androidx.annotation:annotation:${rootProject.annotationLibraryVersion}"
implementation "com.arthurivanets.adapster:adapster:${rootProject.adapsterLibraryVersion}"

testImplementation "junit:junit:${rootProject.jUnitVersion}"
Expand Down
8 changes: 4 additions & 4 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])

implementation "androidx.appcompat:appcompat:${rootProject.supportLibraryVersion}"
implementation "androidx.cardview:cardview:${rootProject.supportLibraryVersion}"
implementation "androidx.browser:browser:${rootProject.supportLibraryVersion}"
implementation "androidx.core:core-ktx:${rootProject.coreKtxLibraryVersion}"
implementation "androidx.appcompat:appcompat:${rootProject.appCompatLibraryVersion}"
implementation "androidx.cardview:cardview:${rootProject.cardViewLibraryVersion}"
implementation "androidx.browser:browser:${rootProject.browserLibraryVersion}"
implementation "androidx.recyclerview:recyclerview:${rootProject.recyclerViewLibraryVersion}"
implementation "com.arthurivanets.adapster:adapster:${rootProject.adapsterLibraryVersion}"

testImplementation "junit:junit:${rootProject.jUnitVersion}"
Expand Down

0 comments on commit a619a20

Please sign in to comment.