Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I view AIDE warnings?

In the Android development app AIDE, how can I view the compiler warning messages? Previous versions displayed a yellow squiggly underline, which you could tap and a toast message would pop up. However, this doesn't happen any more.

For errors there is an Error List panel, but that is only for the red squiggly underlines.

Is there something similar for warnings?

like image 894
intrepidis Avatar asked Apr 22 '15 08:04

intrepidis


2 Answers

Unfortunately, there doesn't seem to be any option to enable a Warning list panel.

I tried to generate a warning by deleting @Override in a basic onCreate() method and there was no indication in the Settings, Errors or Debugger tab.

Note: I have also sent an email to the developers and there was no response yet. Unfortunately you might consider choosing another IDE if you want to fix your warnings.

Later Edit - The official response from Appfour Team:

Sorry, but there is no "view" specifically for warnings. You can (right/left-)swipe through all views to see all possible "view-panels". (Or check in menu: view)

Trixi

Appfour Support Team
For more information and additional help please visit:
AIDE forum
AIDE community on Google+
WIB community on Google+

like image 75
George Netu Avatar answered Sep 20 '22 01:09

George Netu


Usually people complain about warnings and try to suppress them with tag

@SuppressWarnings("unchecked")

Do you by the chance use this tag? It may prevent warnings.

like image 41
Alex Avatar answered Sep 19 '22 01:09

Alex