Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

'index.android.bundle' missing in release mode #62

Merged
merged 37 commits into from
Jun 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
6fabaf3
trying
AmitM30 Oct 5, 2020
01e70b1
iOS build fix
AmitM30 Oct 5, 2020
e7fedca
iOS Build Fixed
AmitM30 Oct 6, 2020
ccfb117
Android build working
AmitM30 Oct 6, 2020
4a29d01
Fix `registerComponentWithRedux` deprecation
AmitM30 Oct 6, 2020
8a4f428
fix lint, bump version
AmitM30 Oct 6, 2020
e399dd7
fix travis
AmitM30 Oct 6, 2020
68faedb
Move Flipper to Debug folder
AmitM30 Oct 6, 2020
bef3a3d
remove unnecessary files
AmitM30 Oct 6, 2020
d2528d7
Add Side Menu, Update Readme
AmitM30 Oct 7, 2020
ab05d3e
Fix Lint, Update readme
AmitM30 Oct 7, 2020
b85739a
Merge pull request #46 from AmitM30/dev_upgrade_RN_0.63
AmitM30 Oct 7, 2020
2e0aa04
trying
AmitM30 Oct 5, 2020
1ea2709
iOS build fix
AmitM30 Oct 5, 2020
46e0b12
iOS Build Fixed
AmitM30 Oct 6, 2020
ce572ee
Android build working
AmitM30 Oct 6, 2020
995a40d
Fix `registerComponentWithRedux` deprecation
AmitM30 Oct 6, 2020
91660b7
fix lint, bump version
AmitM30 Oct 6, 2020
f097d31
fix travis
AmitM30 Oct 6, 2020
1af67f8
Move Flipper to Debug folder
AmitM30 Oct 6, 2020
231bcde
remove unnecessary files
AmitM30 Oct 6, 2020
14330b9
Add Side Menu, Update Readme
AmitM30 Oct 7, 2020
fd8c627
Fix Lint, Update readme
AmitM30 Oct 7, 2020
70a63fa
Merge branch 'dev' of github.com:AmitM30/react-native-typescript-boil…
AmitM30 Oct 7, 2020
98a9750
update table of content
AmitM30 Oct 7, 2020
ce3e78f
Add thunk sample, push example, cleanup
AmitM30 Oct 8, 2020
a8697c0
Merge branch 'master' into dev
AmitM30 Oct 8, 2020
20afc6c
Update Readme
AmitM30 Oct 8, 2020
a97f417
fix lint issues
AmitM30 Oct 8, 2020
85e9ca2
Update Images
AmitM30 Nov 8, 2020
3efc1af
update readme
AmitM30 Feb 24, 2021
9251d0b
Merge branch 'master' into dev
AmitM30 Feb 24, 2021
6fc7a22
Added 'usesCleartextTraffic' to androidmanifeast
AmitM30 Mar 20, 2021
4ecaef7
Update RN, RNN
AmitM30 May 20, 2021
89d8df3
Merge pull request #60 from AmitM30/master
AmitM30 Jun 2, 2021
3c3e8d2
Fix Android release mode 'index.android.bundle' issue
AmitM30 Jun 11, 2021
b9b07da
fix
AmitM30 Jun 11, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,12 @@ task copyDownloadableDepsToLibs(type: Copy) {
into 'libs'
}

project.afterEvaluate {
tasks.findAll { task ->
task.name.startsWith('merge') && task.name.endsWith('Resources')
}.each { t -> t.dependsOn "copyReleaseBundledJs" }
}

subprojects { subproject ->
afterEvaluate {
if ((subproject.plugins.hasPlugin('android') || subproject.plugins.hasPlugin('android-library'))) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"react native navigation",
"boilerplate"
],
"version": "0.4.2",
"version": "0.4.3",
"author": {
"name": "Amit Mangal",
"email": "mangalamitash@gmail.com",
Expand Down