android-7.1-nougat
IllegalArgumentException: column ‘_data’ does not exist
As per given answer by CommonsWare, the solution code is : public static String getFilePathFromURI(Context context, Uri contentUri) { //copy file and send new file path String fileName = getFileName(contentUri); if (!TextUtils.isEmpty(fileName)) { File copyFile = new File(TEMP_DIR_PATH + File.separator + fileName); copy(context, contentUri, copyFile); return copyFile.getAbsolutePath(); } return null; } public static String getFileName(Uri … Read more
E/libEGL: validate_display:99 error 3008 (EGL_BAD_DISPLAY) android os 7.1 nougat
E/libEGL: validate_display:99 error 3008 (EGL_BAD_DISPLAY) android os 7.1 nougat
Android 7 Native Crash: libc.so tgkill
Looking at the dump you provided gives some clues: _ZN7android10uirenderer12renderthread12RenderThread10threadLoopEv This indicates that the error occurred in the UI thread. libhwui.so x 6 This indicates that this is happening in the middle of some graphics/ui related code. libcutils.so – __android_log_assert This is an assert handler, so most likely some kind of assert was violated in … Read more