File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -8,10 +8,6 @@ repositories {
8
8
includeGroup " com.facebook.react"
9
9
}
10
10
}
11
-
12
- maven {
13
- url(project. findProperty(" MAVEN_REPO" ) ?: " $rootDir /../node_modules/hermesvm/android" )
14
- }
15
11
}
16
12
17
13
import com.android.build.OutputFile
@@ -211,9 +207,9 @@ dependencies {
211
207
implementation " com.facebook.react:react-native:+" // From node_modules
212
208
213
209
if (enableHermes) {
214
- def hermesPath = " ../../node_modules/hermesvm/android/ " ;
215
- debugImplementation files(hermesPath + " hermes-debug.aar" )
216
- releaseImplementation files(hermesPath + " hermes-release.aar" )
210
+ def hermesPath = project . findProperty( " MAVEN_REPO " ) ?: " ../../node_modules/hermesvm/android" ;
211
+ debugImplementation files(hermesPath + " / hermes-debug.aar" )
212
+ releaseImplementation files(hermesPath + " / hermes-release.aar" )
217
213
} else {
218
214
implementation jscFlavor
219
215
}
You can’t perform that action at this time.
0 commit comments