Skip to content

Commit

Permalink
Fix dependency declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
friederbluemle committed Apr 15, 2021
1 parent 3e77b58 commit 452a07e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 5 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,13 @@ buildscript {

allprojects {
repositories {
mavenLocal()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url("$rootDir/../node_modules/react-native-electrode-bridge/android/electrode-reactnative-bridge")
}
google()
jcenter()
mavenLocal()
}
}

Expand Down
3 changes: 2 additions & 1 deletion android/lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0'
api('com.walmartlabs.ern:container-movies-reloaded:1.0.0') { changing = true }
// api('com.walmartlabs.ern:container-movies-reloaded:1.0.0') { changing = true }
implementation project(":electrode-reactnative-bridge")
testImplementation 'androidx.test:core:1.3.0'
testImplementation 'androidx.test.ext:junit:1.1.2'
testImplementation 'com.google.truth:truth:1.0.1'
Expand Down
2 changes: 2 additions & 0 deletions android/settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
include ':lib', ':moviesreloaded'
include ':electrode-reactnative-bridge'
project(':electrode-reactnative-bridge').projectDir = new File('../node_modules/react-native-electrode-bridge/android/electrode-reactnative-bridge')

0 comments on commit 452a07e

Please sign in to comment.