We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fd5e6b commit 86d8c7aCopy full SHA for 86d8c7a
RNTester/android/app/build.gradle
@@ -120,6 +120,11 @@ android {
120
signingConfig signingConfigs.release
121
}
122
123
+
124
+ lintOptions {
125
+ abortOnError false
126
+ }
127
128
// applicationVariants are e.g. debug, release
129
applicationVariants.all { variant ->
130
variant.outputs.each { output ->
build.gradle
@@ -35,4 +35,12 @@ allprojects {
35
url "$androidSdk/extras/m2repository/"
36
37
38
39
+ project.configurations.all {
40
+ resolutionStrategy.eachDependency { details ->
41
+ if (details.requested.group == 'com.facebook.soloader') {
42
+ details.useVersion "0.3.0"
43
44
45
46
0 commit comments