Skip to content

Commit

Permalink
fix: upgrade BlurView android dependency to 2.0.4 (Kureev#626)
Browse files Browse the repository at this point in the history
* chore: use newer version of blurView

This is needed because the older version of `com.github.Dimezis:BlurView:version-2.0.3` is returning malformed shas which annoys our nix setup that expects reproducible builds every time.

I noticed that `com.github.Dimezis:BlurView:version-2.0.4` always returns a consistent sha.

Example :

> curl -s https://jitpack.io/com/github/Dimezis/BlurView/version-2.0.4/BlurView-version-2.0.4.pom | md5sum
bc6f937d2ba82396257f6fc5f5247c0d  -

> curl -s https://jitpack.io/com/github/Dimezis/BlurView/version-2.0.4/BlurView-version-2.0.4.pom | md5sum
bc6f937d2ba82396257f6fc5f5247c0d  -

> curl -s https://jitpack.io/com/github/Dimezis/BlurView/version-2.0.4/BlurView-version-2.0.4.pom | md5sum
bc6f937d2ba82396257f6fc5f5247c0d  -

> curl -s https://jitpack.io/com/github/Dimezis/BlurView/version-2.0.4/BlurView-version-2.0.4.pom | md5sum
bc6f937d2ba82396257f6fc5f5247c0d  -

> curl -s https://jitpack.io/com/github/Dimezis/BlurView/version-2.0.4/BlurView-version-2.0.4.pom | md5sum
bc6f937d2ba82396257f6fc5f5247c0d  -

> curl -s https://jitpack.io/com/github/Dimezis/BlurView/version-2.0.4/BlurView-version-2.0.4.pom | md5sum
bc6f937d2ba82396257f6fc5f5247c0d  -

> curl -s https://jitpack.io/com/github/Dimezis/BlurView/version-2.0.4/BlurView-version-2.0.4.pom | md5sum
bc6f937d2ba82396257f6fc5f5247c0d  -

* chore: specify namespace for AGP8
  • Loading branch information
siddarthkay authored Aug 29, 2024
1 parent f964bc2 commit cc7c8cf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ def getExtOrIntegerDefault(name) {

android {
compileSdkVersion getExtOrIntegerDefault('compileSdkVersion')
namespace "com.reactnativecommunity.blurview"

defaultConfig {
minSdkVersion getExtOrIntegerDefault('minSdkVersion')
Expand Down Expand Up @@ -138,5 +139,5 @@ dependencies {
implementation "com.facebook.react:react-native:+"
// From node_modules

implementation 'com.github.Dimezis:BlurView:version-2.0.3'
implementation 'com.github.Dimezis:BlurView:version-2.0.4'
}

0 comments on commit cc7c8cf

Please sign in to comment.