File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ You will see something like this :
6060- Genymotion Emulator: Enable bridge from configure virtual device (option available in genymotion)
6161
6262### Getting address With toast, in case you missed the address log in logcat
63- As this library is auto-initialize, if you want to get the address log only in debug build , add the following method and call
63+ As this library is auto-initialize, if you want to get the address log, add the following method and call
6464``` java
6565public static void showDebugDBAddressLogToast(Context context) {
6666 if (BuildConfig . DEBUG ) {
@@ -69,9 +69,9 @@ public static void showDebugDBAddressLogToast(Context context) {
6969 Method getAddressLog = debugDB. getMethod(" getAddressLog" );
7070 Object value = getAddressLog. invoke(null );
7171 Toast . makeText(context, (String ) value, Toast . LENGTH_LONG ). show();
72- } catch (Exception ignore) {
72+ } catch (Exception ignore) {
7373
74- }
74+ }
7575 }
7676}
7777```
You can’t perform that action at this time.
0 commit comments