mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-29 02:07:39 +08:00
Avoid unnecessary log
Left over from an experiment. Logs only stay on the device, so this wasn't a problem, but it stays constant on Android across installs. It would be nice to use this ID instead the random ID that we generate, but that could be counted as personally identifyable info. I'm not too sure.
This commit is contained in:
@ -142,7 +142,6 @@ class JournalApp extends StatefulWidget {
|
|||||||
if (Platform.isAndroid) {
|
if (Platform.isAndroid) {
|
||||||
var info = await deviceInfo.androidInfo;
|
var info = await deviceInfo.androidInfo;
|
||||||
isPhysicalDevice = info.isPhysicalDevice;
|
isPhysicalDevice = info.isPhysicalDevice;
|
||||||
Log.d("Device Fingerprint: " + info.fingerprint);
|
|
||||||
} else if (Platform.isIOS) {
|
} else if (Platform.isIOS) {
|
||||||
var info = await deviceInfo.iosInfo;
|
var info = await deviceInfo.iosInfo;
|
||||||
isPhysicalDevice = info.isPhysicalDevice;
|
isPhysicalDevice = info.isPhysicalDevice;
|
||||||
|
Reference in New Issue
Block a user