钱包提现功能调试
This commit is contained in:
@@ -20,12 +20,31 @@ public class MobileInfoUtils {
|
||||
|
||||
//获取手机类型
|
||||
|
||||
private static String getMobileType() {
|
||||
public static String getMobileType() {
|
||||
|
||||
return Build.MANUFACTURER;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取手机厂商
|
||||
*
|
||||
* @return 手机厂商
|
||||
*/
|
||||
public static String getDeviceBrand() {
|
||||
return android.os.Build.BRAND;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取当前手机系统版本号
|
||||
*
|
||||
* @return 系统版本号
|
||||
*/
|
||||
public static String getSystemVersion() {
|
||||
return android.os.Build.VERSION.RELEASE;
|
||||
}
|
||||
|
||||
|
||||
//跳转至授权页面
|
||||
|
||||
public void jumpStartInterface(Context context) {
|
||||
|
||||
Reference in New Issue
Block a user