Posts by luciofm • 126 points
2 posts
-
1
votes3
answers300
viewsA: Android Development Profile (Profile)
I like to address this issue of profiles in the build, using Gradle buildTypes. In my case usually my apps have 3 different builds: Dev pointing to development server Staging pointing to the…
-
0
votes2
answers235
viewsA: How to avoid an Illegalstateexception: The content of the Adapter has changed but Listview Did not receive a notification?
The correct answer is not to change the Adapter in a Background thread, the exception itself already alerts to this... ...... } else if (mItemCount != mAdapter.getCount()) { throw new…