mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-29 18:38:36 +08:00
Fix Android logging
This had broken everything!!!
This commit is contained in:
@ -51,7 +51,12 @@ public class MainActivity extends FlutterActivity implements MethodCallHandler {
|
|||||||
if (call.arguments instanceof Map) {
|
if (call.arguments instanceof Map) {
|
||||||
Map<String, Object> map = (Map<String, Object>) call.arguments;
|
Map<String, Object> map = (Map<String, Object>) call.arguments;
|
||||||
for (Map.Entry<String, Object> entry : map.entrySet()) {
|
for (Map.Entry<String, Object> entry : map.entrySet()) {
|
||||||
Log.d("GitJournalAndroid", ". " + entry.getKey() + ": " + entry.getValue().toString());
|
Object val = entry.getValue();
|
||||||
|
String objVal = "";
|
||||||
|
if (val != null) {
|
||||||
|
objVal = val.toString();
|
||||||
|
}
|
||||||
|
Log.d("GitJournalAndroid", ". " + entry.getKey() + ": " + val);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
name: journal
|
name: journal
|
||||||
description: A Journaling App Built on top of Git
|
description: A Journaling App Built on top of Git
|
||||||
version: 1.1.10+10
|
version: 1.1.11+10
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
|
Reference in New Issue
Block a user