Jack Trowbridge
Jack Trowbridge

Reputation: 3251

Will warnings cause problems in an Android application?

I have warnings in my Android project, thought it builds fine and everything seems to work correctly at runtime. I would like to know if there are certain types of warnings that will cause problems down the road.

Upvotes: 2

Views: 156

Answers (1)

Gangnus
Gangnus

Reputation: 24464

better check every one of them. Some of them are very dangerous and can signalize of potential problems that will appear in runtime. Some can influence your product in future only. Some doesn't matter. (of the latter two @alextsc writes in the comment). Try to understand the reason of every one - it is a good school. Liquidate them if you can.

But until you are very good in telling which warning is dangerous or not, don't block any warnings!

Upvotes: 1

Related Questions