Top "Warnings" questions

A warning is often issued on recognizing a potential high-risk situation, a probable misunderstanding, degraded service or imminent failure.

Security warning when opening file from network share

I've created a setup executable which I have signed. It's located on a network share (which I access using unc …

security installation warnings network-share
Element <element> is not a known element warning in Visual Studio when using User controls

I have a Visual Studio 2008 project that is showing the following warning when using User Controls, and I haven’t …

asp.net visual-studio webforms user-controls warnings
Not targeting the latest versions of Android

I have a warning when trying to test theme on latest Android SDK Package 4.2. Here is my manifest file: <?…

android styles themes warnings manifest
Use new keyword if hiding was intended

I have the following snippet of code that's generating the "Use new keyword if hiding was intended" warning in VS2008: …

c# inheritance warnings new-operator
Class is a raw type. References to generic type Class<T> should be parameterized

I have the following class (from a simple Spring tutorial) public class CarValidator implements Validator { public boolean supports(Class aClass) { …

java generics warnings suppress-warnings type-erasure
How to find which promises are unhandled in Node.js UnhandledPromiseRejectionWarning?

Node.js from version 7 has async/await syntactic sugar for handling promises and now in my code the following warning …

node.js promise async-await warnings unhandled-exception
Suppressing deprecated warnings in Xcode

With all the SDKs floating around, it's handy to be able to build for multiple SDKs and platforms. However, bouncing …

iphone xcode macos warnings
Missing support for Firebase App Indexing (android lint)

I receive this lint warning when analysing my code (Analyse > Inspect Codes) on Android studios. App is not indexable …

android-studio permissions android-manifest warnings android-lint
iPhone OS Memory Warnings. What Do The Different Levels Mean?

Regarding the black art of managing memory on iPhone OS devices: what do the different levels of memory warning mean. …

memory-management ipad warnings
"sending 'const NSString *' to parameter of type 'NSString *' discards qualifiers" warning

I have Constants NSString, that I want to call like: [newString isEqualToString:CONSTANT_STRING]; Any wrong code here? I got …

objective-c nsstring warnings constants