소스 검색

Fixed path of RN local Maven repo

Summary:
The old path only work for 'example-redux'
InitialT 8 년 전
부모
커밋
b21fa10d44
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      android/app/build.gradle

+ 1
- 1
android/app/build.gradle 파일 보기

@@ -43,7 +43,7 @@ repositories {
43 43
     jcenter()
44 44
     maven {
45 45
         // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
46
-        url "$rootDir/../../example-redux/node_modules/react-native/android"
46
+        url "rootDir/../node_modules/react-native/android"
47 47
     }
48 48
 }
49 49