Skip to content

Commit 208712b

Browse files
authored
Merge pull request #62 from AmitM30/dev
'index.android.bundle' missing in release mode
2 parents 5f36c52 + b9b07da commit 208712b

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

android/app/build.gradle

+6
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,12 @@ task copyDownloadableDepsToLibs(type: Copy) {
221221
into 'libs'
222222
}
223223

224+
project.afterEvaluate {
225+
tasks.findAll { task ->
226+
task.name.startsWith('merge') && task.name.endsWith('Resources')
227+
}.each { t -> t.dependsOn "copyReleaseBundledJs" }
228+
}
229+
224230
subprojects { subproject ->
225231
afterEvaluate {
226232
if ((subproject.plugins.hasPlugin('android') || subproject.plugins.hasPlugin('android-library'))) {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"react native navigation",
1010
"boilerplate"
1111
],
12-
"version": "0.4.2",
12+
"version": "0.4.3",
1313
"author": {
1414
"name": "Amit Mangal",
1515
"email": "[email protected]",

0 commit comments

Comments
 (0)