Skip to content
This repository has been archived by the owner on Jun 1, 2024. It is now read-only.

Commit

Permalink
Update more libraries, downgrade robolectric to fix build (#3216)
Browse files Browse the repository at this point in the history
* Update more libraries, downgrade robolectric to fix build

* Add licenses to travis
  • Loading branch information
TacoTheDank authored Jul 14, 2020
1 parent 08be7c1 commit 139f52e
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 17 deletions.
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,18 @@ android:
components:
- tools
- platform-tools

- build-tools-28.0.3
- tools
- build-tools-29.0.3
- android-28

- extra-android-m2repository
- extra-google-m2repository
- extra-google-google_play_services

licenses:
- 'android-sdk-license-.+'
- 'android-sdk-preview-license-.+'

notifications:
email: false

Expand Down
32 changes: 17 additions & 15 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@ android {

ext {
supportLibVersion = '28.0.0'
robolectricVersion = '4.3'
powerMockitoVersion = '1.7.4' //2.0.0-RC.3
robolectricVersion = '3.8'
powerMockitoVersion = '1.7.4'
exoPlayerVersion = '2.9.6' // need minSDK 16 for anything higher
}

dependencies {
withGPlayImplementation 'com.google.android.gms:play-services-drive:10.2.6' //16.0.0
withGPlayImplementation 'com.google.android.gms:play-services-drive:10.2.6'

implementation 'com.github.ccrama:JRAW:9a2494892d'
implementation 'com.github.ccrama:TedBottomPicker:496623c9b6'
Expand All @@ -95,6 +95,7 @@ dependencies {

implementation "com.android.support:design:${supportLibVersion}"
implementation "com.android.support:customtabs:${supportLibVersion}"
implementation "com.android.support:exifinterface:${supportLibVersion}"
implementation "com.android.support:appcompat-v7:${supportLibVersion}"
implementation "com.android.support:cardview-v7:${supportLibVersion}"
implementation "com.android.support:recyclerview-v7:${supportLibVersion}"
Expand All @@ -107,36 +108,37 @@ dependencies {
implementation "com.google.android.exoplayer:exoplayer-dash:${exoPlayerVersion}"
implementation "com.google.android.exoplayer:exoplayer-ui:${exoPlayerVersion}"

implementation 'com.google.guava:guava:23.6.1-android' //27.0-android
implementation 'com.google.guava:guava:29.0-android'
//Updating material-dialogs to any newer version will break all AlertDialogWrapper
//noinspection GradleDependency
implementation 'com.afollestad.material-dialogs:commons:0.8.6.2' //0.9.6.0
implementation 'com.jakewharton:process-phoenix:2.0.0'
implementation 'org.ligi:snackengage:0.5'
implementation 'com.github.rey5137:material:1.2.4'
implementation 'com.github.ligi.snackengage:snackengage-core:0.22'
implementation 'com.github.ligi.snackengage:snackengage-playrate:0.22'
implementation 'com.github.rey5137:material:1.2.5'
implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
implementation 'com.davemorrissey.labs:subsampling-scale-image-view:3.6.0' //3.10.0
implementation 'com.cocosw:bottomsheet:1.3.0@aar'
implementation 'com.davemorrissey.labs:subsampling-scale-image-view:3.6.0'
implementation 'com.cocosw:bottomsheet:1.4.0@aar'
implementation 'com.lusfold.androidkeyvaluestore:library:0.1.0@aar'
implementation 'org.apache.commons:commons-lang3:3.10'
implementation 'org.apache.commons:commons-text:1.8'
implementation 'commons-io:commons-io:2.7'
implementation 'jp.wasabeef:blurry:2.1.1'
implementation 'com.makeramen:roundedimageview:2.2.1' //2.3.0
implementation 'com.makeramen:roundedimageview:2.3.0'
implementation 'com.getbase:floatingactionbutton:1.10.1'
implementation 'com.sothree.slidinguppanel:library:3.3.1' //3.4.0
implementation 'com.sothree.slidinguppanel:library:3.4.0'
implementation 'com.github.suckgamony.RapidDecoder:library:7cdfca47fa'
implementation 'com.github.dasar:shiftcolorpicker:v0.5'
implementation 'com.squareup.okhttp3:okhttp:3.7.0' //3.11.0
implementation 'com.squareup.okhttp3:okhttp:3.12.12'
implementation 'com.google.code.gson:gson:2.8.6'

implementation 'com.github.ozodrukh:CircularReveal:2.1.0'
implementation 'org.jetbrains:annotations-java5:15.0' //16.0.3
implementation 'com.mikepenz:itemanimators:1.0.2@aar' //1.1.0
compileOnly 'org.jetbrains:annotations:19.0.0'
implementation 'com.mikepenz:itemanimators:1.0.2@aar'
implementation 'com.neovisionaries:nv-websocket-client:2.9'
implementation 'com.theartofdev.edmodo:android-image-cropper:2.3.1' //2.8.0
implementation 'com.theartofdev.edmodo:android-image-cropper:2.7.0'
implementation 'me.everything:overscroll-decor-android:1.0.4'
implementation 'com.mikepenz:aboutlibraries:5.8.5' //5.9.0, 5.9.8, 6.0.0
implementation 'com.mikepenz:aboutlibraries:6.1.1'
implementation 'com.googlecode.mp4parser:isoparser:1.1.22'

testImplementation 'junit:junit:4.12'
Expand Down

0 comments on commit 139f52e

Please sign in to comment.