Skip to content

Commit

Permalink
Force some remaining vulns
Browse files Browse the repository at this point in the history
  • Loading branch information
rajdeepnanua-okta committed Dec 20, 2023
1 parent f72e1c7 commit 15c439d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions e2e/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,8 @@ dependencies {
implementation 'com.squareup.okhttp3:okhttp:4.11.0'
implementation 'com.squareup.okio:okio:3.5.0'
implementation 'com.squareup.okio:okio-jvm:3.5.0'
implementation 'commons-fileupload:commons-fileupload:1.5'
implementation 'com.google.guava:guava:32.1.3-android'

def isGifEnabled = (findProperty('expo.gif.enabled') ?: "") == "true";
def isWebpEnabled = (findProperty('expo.webp.enabled') ?: "") == "true";
Expand Down
14 changes: 14 additions & 0 deletions e2e/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
configurations.configureEach { configuration ->
configuration.resolutionStrategy {
force 'commons-fileupload:commons-fileupload:1.5'
force 'com.google.guava:guava:32.1.3-android'
}
}

ext {
buildToolsVersion = findProperty('android.buildToolsVersion') ?: '34.0.0'
minSdkVersion = Integer.parseInt(findProperty('android.minSdkVersion') ?: '21')
Expand All @@ -24,6 +31,13 @@ buildscript {
apply plugin: "com.facebook.react.rootproject"

allprojects {
configurations.configureEach { configuration ->
configuration.resolutionStrategy {
force 'commons-fileupload:commons-fileupload:1.5'
force 'com.google.guava:guava:32.1.3-android'
}
}

repositories {
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
Expand Down

0 comments on commit 15c439d

Please sign in to comment.