-
-
Notifications
You must be signed in to change notification settings - Fork 195
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
Strange logs after project built #4300
Comments
This happens because of a warning when using support library 28 or later. You can check for more details here - https://stackoverflow.com/a/52954286/613113. Unfortunately I'm not sure what we can do to avoid this warning, the good thing is that this shouldn't be really a problem. |
Subject logs are from Samsung Galaxy A3 (2017) (Android 7.0).
Also I test it on Lenovo TAB 2 A8-50LC (Android 5.1). It produces such logs:
Also tested on Meizu M2 (Android 5.1) without such logs. |
Try adding the following code in your configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
def requested = details.requested
if (requested.group == "com.android.support") {
if (!requested.name.startsWith("multidex")) {
details.useVersion "26.+"
}
}
}
} |
@lini it helps with Samsung. But still appears on Lenovo TAB 2 A8-50LC (Android 5.1) and now with delay (after my logs).
|
Hey guys, I made the changes provided above, and no warnings are shown 👍, but still if I enable Snapshot in Sidekick for production the app crashes. I am using a Samsung Galaxy A tablet also deploying in a Pixel 2 API 28 emulator, in both of them the app crashes. Is this a common issue or am I missing something? Thanks! |
The log that comes in that case looks like an exception but is logged as Info: Here's the log from an exception in Android Runtime and here's the log received when application starts. |
@webleaf commented on Mon Nov 12 2018
Environment
Describe the bug
After upgrading to NS5, I've began to receive such logs at the start of the application.
Testing with
tns-template-blank-ts
gives same result.To Reproduce
tns create my-blank-ts --template tns-template-blank-ts
Additional context
macOS High Sierra 10.13.3
@nuvoPoint commented on Mon Nov 12 2018
Same issue here, but on Windows.
The text was updated successfully, but these errors were encountered: