From 760659495a0ed3fb2474b63451960de30d68d7d7 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Thu, 26 Dec 2019 20:43:51 +0100 Subject: [PATCH] Print the device fingerprint For debugging purposes --- lib/app.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/app.dart b/lib/app.dart index 84cf07e8..e4b491b7 100644 --- a/lib/app.dart +++ b/lib/app.dart @@ -70,6 +70,7 @@ class JournalApp extends StatelessWidget { if (Platform.isAndroid) { var info = await deviceInfo.androidInfo; isPhysicalDevice = info.isPhysicalDevice; + Fimber.d("Device Fingerprint: " + info.fingerprint); } else if (Platform.isIOS) { var info = await deviceInfo.iosInfo; isPhysicalDevice = info.isPhysicalDevice;