suppressExpoWarnings not working
See original GitHub issueI can’t get expo to properly suppress the warnings. I put this at the top of my root file:
import { THREE } from 'expo-three';
THREE.suppressExpoWarnings(true);
…but I still get tons of webgl warnings. Am I doing something wrong here? Using Android.
Issue Analytics
- State:
- Created 6 years ago
- Comments:7 (2 by maintainers)
Top Results From Across the Web
R - suppressMessages / suppressWarnings not working
I have tried expressions with suppressMessages(expr), suppressWarnings(expr), but they keep outputting messages.
Read more >@SuppressWarnings annotation does not suppress ... - GitHub
Problem : @SuppressWarnings annotation does not suppress UncommentedMainCheck violations. Input file: Test1.java public class Test1 ...
Read more >541035 – @SuppressWarnings("unchecked") not working
The @SuppressWarnings("unchecked") is not working and i see the warnings. Trying to clean and build not worked,I even closed and reopent the project....
Read more >SuppressWarnings does not work with a constant
The plugin can't process @SuppressWarnings annotation with a constant. Example: @SuppressWarnings(“java:S1168”) // works @SuppressWarnings(Sonar ...
Read more >Java @SuppressWarnings Annotation | Baeldung
In this quick tutorial, we'll have a look at how to use the @SuppressWarnings annotation. 2. @SuppressWarnings Annotation. Compiler warning ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@SebastianMerz @JulianKingman You have to add
THREE.suppressExpoWarnings(true);
incomponentWillMount
for whatever reason…Try this:
componentWillMount() { THREE.suppressExpoWarnings(true); }