Skip to content

Commit 6ef446c

Browse files
Getting address With toast
1 parent 7ee994a commit 6ef446c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
6565
public 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
```

0 commit comments

Comments
 (0)