Feature #2804
Device identity for video should not be empty
Status: | New | Start date: | 12/20/2013 | |
---|---|---|---|---|
Priority: | High | Due date: | ||
Assignee: | n8fr8 | % Done: | 0% | |
Category: | - | |||
Target version: | - | |||
Component: |
Description
With photos, we get that value from the image EXIF data. With video, that does not exist. Instead we should be pulling that value ourselves from the device system information.
History
#1 Updated by n8fr8 about 4 years ago
Maybe we can use this instead?
String s="Debug-infos:";
s = "\n OS Version: " + System.getProperty("os.version") + "(" + android.os.Build.VERSION.INCREMENTAL + ")";
s += "\n OS API Level: " + android.os.Build.VERSION.SDK;
s += "\n Device: " + android.os.Build.DEVICE;
s += "\n Model (and Product): " + android.os.Build.MODEL + " (" android.os.Build.PRODUCT + ")";