File not found: index.android.js in any of the project roots - React Native Navigation production packaging
My app runs on React Native Navigation v1.0 and react-native v0.56.0. This runs pretty well on Android simulator without any trouble.
Recently, I was planning to make a production build following the steps as described at ReactNative page.
At the time of generating the release APK with ./gradlew assembleRelease
command, eventually I've thrown by the error - File not found: index.android.js in any of the project roots
; But my project consists of index.js not index.android.js.
This is less possible to get a help at Wix Git since they gives less attention to v1.0 nowadays. So, I'm hoping for an way out here.
Here is my MainApplication.java contents:
import android.support.annotation.Nullable;
import com.facebook.react.ReactPackage;
import com.reactnativenavigation.NavigationApplication;
import java.util.Arrays;
import java.util.List;
import com.reactnative.ivpusic.imagepicker.PickerPackage;
import com.oblador.vectoricons.VectorIconsPackage;
public class MainApplication extends NavigationApplication {
@Override
public boolean isDebug() {
return BuildConfig.DEBUG;
}
@Nullable
@Override
public List<ReactPackage> createAdditionalReactPackages() {
return Arrays.<ReactPackage>asList(
new PickerPackage(),
new VectorIconsPackage()
);
}
@Nullable
@Override
public String getJSMainModuleName() {
return "index";
}
}
Please help.
Thanks!
react-native react-native-navigation wix-react-native-navigation
add a comment |
My app runs on React Native Navigation v1.0 and react-native v0.56.0. This runs pretty well on Android simulator without any trouble.
Recently, I was planning to make a production build following the steps as described at ReactNative page.
At the time of generating the release APK with ./gradlew assembleRelease
command, eventually I've thrown by the error - File not found: index.android.js in any of the project roots
; But my project consists of index.js not index.android.js.
This is less possible to get a help at Wix Git since they gives less attention to v1.0 nowadays. So, I'm hoping for an way out here.
Here is my MainApplication.java contents:
import android.support.annotation.Nullable;
import com.facebook.react.ReactPackage;
import com.reactnativenavigation.NavigationApplication;
import java.util.Arrays;
import java.util.List;
import com.reactnative.ivpusic.imagepicker.PickerPackage;
import com.oblador.vectoricons.VectorIconsPackage;
public class MainApplication extends NavigationApplication {
@Override
public boolean isDebug() {
return BuildConfig.DEBUG;
}
@Nullable
@Override
public List<ReactPackage> createAdditionalReactPackages() {
return Arrays.<ReactPackage>asList(
new PickerPackage(),
new VectorIconsPackage()
);
}
@Nullable
@Override
public String getJSMainModuleName() {
return "index";
}
}
Please help.
Thanks!
react-native react-native-navigation wix-react-native-navigation
add a comment |
My app runs on React Native Navigation v1.0 and react-native v0.56.0. This runs pretty well on Android simulator without any trouble.
Recently, I was planning to make a production build following the steps as described at ReactNative page.
At the time of generating the release APK with ./gradlew assembleRelease
command, eventually I've thrown by the error - File not found: index.android.js in any of the project roots
; But my project consists of index.js not index.android.js.
This is less possible to get a help at Wix Git since they gives less attention to v1.0 nowadays. So, I'm hoping for an way out here.
Here is my MainApplication.java contents:
import android.support.annotation.Nullable;
import com.facebook.react.ReactPackage;
import com.reactnativenavigation.NavigationApplication;
import java.util.Arrays;
import java.util.List;
import com.reactnative.ivpusic.imagepicker.PickerPackage;
import com.oblador.vectoricons.VectorIconsPackage;
public class MainApplication extends NavigationApplication {
@Override
public boolean isDebug() {
return BuildConfig.DEBUG;
}
@Nullable
@Override
public List<ReactPackage> createAdditionalReactPackages() {
return Arrays.<ReactPackage>asList(
new PickerPackage(),
new VectorIconsPackage()
);
}
@Nullable
@Override
public String getJSMainModuleName() {
return "index";
}
}
Please help.
Thanks!
react-native react-native-navigation wix-react-native-navigation
My app runs on React Native Navigation v1.0 and react-native v0.56.0. This runs pretty well on Android simulator without any trouble.
Recently, I was planning to make a production build following the steps as described at ReactNative page.
At the time of generating the release APK with ./gradlew assembleRelease
command, eventually I've thrown by the error - File not found: index.android.js in any of the project roots
; But my project consists of index.js not index.android.js.
This is less possible to get a help at Wix Git since they gives less attention to v1.0 nowadays. So, I'm hoping for an way out here.
Here is my MainApplication.java contents:
import android.support.annotation.Nullable;
import com.facebook.react.ReactPackage;
import com.reactnativenavigation.NavigationApplication;
import java.util.Arrays;
import java.util.List;
import com.reactnative.ivpusic.imagepicker.PickerPackage;
import com.oblador.vectoricons.VectorIconsPackage;
public class MainApplication extends NavigationApplication {
@Override
public boolean isDebug() {
return BuildConfig.DEBUG;
}
@Nullable
@Override
public List<ReactPackage> createAdditionalReactPackages() {
return Arrays.<ReactPackage>asList(
new PickerPackage(),
new VectorIconsPackage()
);
}
@Nullable
@Override
public String getJSMainModuleName() {
return "index";
}
}
Please help.
Thanks!
react-native react-native-navigation wix-react-native-navigation
react-native react-native-navigation wix-react-native-navigation
asked Nov 20 '18 at 10:10
Santanu Karar
513617
513617
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
It looks like I able to continue after adding the following line to /android/app/build.gradle
file at top:
project.ext.react = [
entryFile: "index.js"
]
The above line was not there before, and I don't know if adding only this is adequate - I moved from throwing that index.android.js error, but stuck somewhere else now; At least this looks like adding that line not throwing me the index.android.js error anymore.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53390650%2ffile-not-found-index-android-js-in-any-of-the-project-roots-react-native-navi%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
It looks like I able to continue after adding the following line to /android/app/build.gradle
file at top:
project.ext.react = [
entryFile: "index.js"
]
The above line was not there before, and I don't know if adding only this is adequate - I moved from throwing that index.android.js error, but stuck somewhere else now; At least this looks like adding that line not throwing me the index.android.js error anymore.
add a comment |
It looks like I able to continue after adding the following line to /android/app/build.gradle
file at top:
project.ext.react = [
entryFile: "index.js"
]
The above line was not there before, and I don't know if adding only this is adequate - I moved from throwing that index.android.js error, but stuck somewhere else now; At least this looks like adding that line not throwing me the index.android.js error anymore.
add a comment |
It looks like I able to continue after adding the following line to /android/app/build.gradle
file at top:
project.ext.react = [
entryFile: "index.js"
]
The above line was not there before, and I don't know if adding only this is adequate - I moved from throwing that index.android.js error, but stuck somewhere else now; At least this looks like adding that line not throwing me the index.android.js error anymore.
It looks like I able to continue after adding the following line to /android/app/build.gradle
file at top:
project.ext.react = [
entryFile: "index.js"
]
The above line was not there before, and I don't know if adding only this is adequate - I moved from throwing that index.android.js error, but stuck somewhere else now; At least this looks like adding that line not throwing me the index.android.js error anymore.
answered Nov 20 '18 at 10:39
Santanu Karar
513617
513617
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53390650%2ffile-not-found-index-android-js-in-any-of-the-project-roots-react-native-navi%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown