Skip to content

Commit

Permalink
Fix dependency declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
friederbluemle committed Jan 11, 2020
1 parent 9255c20 commit 019fc23
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 @@ -26,7 +26,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:local-container:1.0.0') {changing=true}
// api ('com.walmartlabs.ern:local-container:1.0.0') {changing=true}
implementation project(":electrode-reactnative-bridge")
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
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 019fc23

Please sign in to comment.