SQlite – enable log events and see it in logcat
Create .bat file with commands provided below: adb shell setprop log.tag.SQLiteLog V adb shell setprop log.tag.SQLiteStatements V adb shell su 0 stop adb shell su 0 start After You execute…
Create .bat file with commands provided below: adb shell setprop log.tag.SQLiteLog V adb shell setprop log.tag.SQLiteStatements V adb shell su 0 stop adb shell su 0 start After You execute…
All what we need is to make few steps: Add in our project this line to output in log current path to database Log.d(TAG, "onCreate db: " + context.getDatabasePath("mydatabase.db")); Create…