-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
bug - Support MainApplication.kt #7846
base: master
Are you sure you want to change the base?
Conversation
@@ -6,8 +6,10 @@ var ignoreFolders = { | |||
exports.mainActivityJava = glob.sync('**/MainActivity.java', ignoreFolders)[0]; | |||
exports.mainActivityKotlin = glob.sync('**/MainActivity.kt', ignoreFolders)[0]; | |||
var mainApplicationJava = glob.sync('**/MainApplication.java', ignoreFolders)[0]; | |||
var mainApplicationKotlin = glob.sync('**/MainApplication.kt', ignoreFolders)[0]; | |||
var mainApplication = mainApplicationJava || mainApplicationKotlin | |||
exports.mainApplicationJava = mainApplicationJava; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I left mainApplicationJava, as i'm not sure if we do want to change this variable. please change it as well if it's needed
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
@@ -6,8 +6,10 @@ var ignoreFolders = { | |||
exports.mainActivityJava = glob.sync('**/MainActivity.java', ignoreFolders)[0]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
probably want to handle MainActivity.{java,kt} the same as we treat AppDelegate.{m,mm}
@@ -6,8 +6,10 @@ var ignoreFolders = { | |||
exports.mainActivityJava = glob.sync('**/MainActivity.java', ignoreFolders)[0]; | |||
exports.mainActivityKotlin = glob.sync('**/MainActivity.kt', ignoreFolders)[0]; | |||
var mainApplicationJava = glob.sync('**/MainApplication.java', ignoreFolders)[0]; | |||
var mainApplicationKotlin = glob.sync('**/MainApplication.kt', ignoreFolders)[0]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
probably want to handle MainApplication.{java,kt} the same as we treat AppDelegate.{m,mm}
Hey guys, please see #7821 we were hoping the |
No description provided.