钱包提现功能调试

This commit is contained in:
2024-04-29 16:35:58 +08:00
parent 98bb7113af
commit 683d8eb283
22 changed files with 643 additions and 203 deletions
@@ -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) {