Skip to content

Commit

Permalink
fix(android): use newest glide version(RN 0.67+ support)
Browse files Browse the repository at this point in the history
  • Loading branch information
hannojg authored May 13, 2022
1 parent 3b79148 commit a661be6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,15 @@ repositories {
mavenCentral()
}

def glideVersion = safeExtGet('glideVersion', '4.12.0')

def glideVersion = safeExtGet('glideVersion', '4.13.1')

dependencies {
//noinspection GradleDynamicVersion
implementation 'com.facebook.react:react-native:+' // From node_modules
implementation "com.github.bumptech.glide:glide:${glideVersion}"
implementation "com.github.bumptech.glide:okhttp3-integration:${glideVersion}"
implementation "com.zlc.glide:webpdecoder:2.0.${glideVersion}"
implementation "com.github.bumptech.glide:glide:${glideVersion}"
annotationProcessor "com.github.bumptech.glide:compiler:${glideVersion}"
}

0 comments on commit a661be6

Please sign in to comment.