We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5f36c52 + b9b07da commit 208712bCopy full SHA for 208712b
android/app/build.gradle
@@ -221,6 +221,12 @@ task copyDownloadableDepsToLibs(type: Copy) {
221
into 'libs'
222
}
223
224
+project.afterEvaluate {
225
+ tasks.findAll { task ->
226
+ task.name.startsWith('merge') && task.name.endsWith('Resources')
227
+ }.each { t -> t.dependsOn "copyReleaseBundledJs" }
228
+}
229
+
230
subprojects { subproject ->
231
afterEvaluate {
232
if ((subproject.plugins.hasPlugin('android') || subproject.plugins.hasPlugin('android-library'))) {
package.json
@@ -9,7 +9,7 @@
9
"react native navigation",
10
"boilerplate"
11
],
12
- "version": "0.4.2",
+ "version": "0.4.3",
13
"author": {
14
"name": "Amit Mangal",
15
"email": "[email protected]",
0 commit comments