Development Note/Android

[Android Java] DeviceName 가져오기

JamesChun 2020. 8. 13. 19:02
public static String getDeviceModel() {
        return String.format("%s %s", Build.BRAND, Build.MODEL);
}