As far as I know, in android \"release build\" is signed APK. How to check it from code or does Eclipse has some kinda of secret defines?
I need thi
Solved with android:debuggable. It was bug in reading item where in some cases debug flag on item was not being stored in record getting if (m.debug && !App.isDebuggable(getContext())) always evaluated to false. My bad.
android:debuggable
if (m.debug && !App.isDebuggable(getContext()))
false