Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
wangyuwei.jeason committed Nov 10, 2021
1 parent 284e5c3 commit 150f7bb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ android {
}

dependencies {
implementation "com.android.support:appcompat-v7:${versions.supportLibrary}"
implementation "com.android.support:design:${versions.supportLibrary}"
implementation "com.android.support:appcompat-v7:27.1.1"
implementation "com.android.support:design:27.1.1"
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation "com.facebook.fresco:fresco:${versions.fresco}"
implementation "com.facebook.fresco:animated-gif:${versions.fresco}"
Expand All @@ -45,6 +45,7 @@ dependencies {

debugImplementation project(':uetool')
debugImplementation project(':uetool-fresco')
debugImplementation project(':uetool-base')
releaseImplementation project(':uetool-no-op')
// debugImplementation "me.ele:uetool:${versions.release}"
// debugImplementation "me.ele:uetool-fresco:${versions.release}"
Expand Down
6 changes: 3 additions & 3 deletions uetool-base/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ android {
}

dependencies {
api "com.android.support:appcompat-v7:${versions.supportLibrary}"
api "com.android.support:recyclerview-v7:${versions.supportLibrary}"
api "com.android.support:support-v4:${versions.supportLibrary}"
api "com.android.support:appcompat-v7:27.1.1"
api "com.android.support:recyclerview-v7:27.1.1"
api "com.android.support:support-v4:27.1.1"
}

lintOptions {
Expand Down
4 changes: 3 additions & 1 deletion uetool/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,7 @@ dependencies {
compileOnly project(':uetool-base')
// api "me.ele:uetool-base:${versions.release}"
implementation 'com.jakewharton.scalpel:scalpel:1.1.2'
implementation 'com.github.bmelnychuk:atv:1.2.9'
implementation ('com.github.bmelnychuk:atv:1.2.9') {
exclude group: 'com.android.support', module: 'appcompat-v7'
}
}

0 comments on commit 150f7bb

Please sign in to comment.