@@ -12,7 +12,7 @@ module.exports = platform => [{
12
12
dependencies {
13
13
// Matches recent template from React Native (0.60)
14
14
// https://github.com/facebook/react-native/blob/0.60-stable/template/android/build.gradle#L16
15
- classpath("com.android.tools.build:gradle:$\ {safeExtGet('gradlePluginVersion', '3.4.1')\ }")
15
+ classpath("com.android.tools.build:gradle:\$ {safeExtGet('gradlePluginVersion', '3.4.1')}")
16
16
}
17
17
}
18
18
@@ -54,7 +54,7 @@ repositories {
54
54
}
55
55
56
56
dependencies {
57
- implementation "com.facebook.react:react-native:$\ {safeExtGet('reactnativeVersion', '+')\ }"
57
+ implementation "com.facebook.react:react-native:\$ {safeExtGet('reactnativeVersion', '+')}"
58
58
}
59
59
60
60
def configureReactNativePom(def pom) {
@@ -107,7 +107,7 @@ afterEvaluate { project ->
107
107
108
108
android.libraryVariants.all { variant ->
109
109
def name = variant.name.capitalize()
110
- task "jar$\ {name\ }"(type: Jar, dependsOn: variant.javaCompile) {
110
+ task "jar\$ {name}"(type: Jar, dependsOn: variant.javaCompile) {
111
111
from variant.javaCompile.destinationDir
112
112
}
113
113
}
@@ -121,7 +121,7 @@ afterEvaluate { project ->
121
121
configuration = configurations.archives
122
122
repositories.mavenDeployer {
123
123
// Deploy to react-native-event-bridge/maven, ready to publish to npm
124
- repository url: "file://$\ {projectDir\ }/../android/maven"
124
+ repository url: "file://\$ {projectDir}/../android/maven"
125
125
126
126
configureReactNativePom pom
127
127
}
0 commit comments