Compare commits
4 Commits
492cafb51a
...
48be0900e1
| Author | SHA1 | Date |
|---|---|---|
|
|
48be0900e1 | |
|
|
620235c089 | |
|
|
b3752e4716 | |
|
|
ffc88920db |
|
|
@ -2,6 +2,7 @@
|
|||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools">
|
||||
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||||
<uses-permission android:name="android.permission.ACTION_NOTIFICATION_LISTENER_SETTINGS" />
|
||||
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS"/>
|
||||
<uses-permission android:name="android.permission.ANSWER_PHONE_CALLS" />
|
||||
|
|
|
|||
|
|
@ -105,9 +105,8 @@ public class HeartbeatAlarmReceiver extends BroadcastReceiver {
|
|||
*/
|
||||
private <T> Request buildRequest(String apiUrl) {
|
||||
// 从资源文件中读取序列号和访问令牌
|
||||
// SN = context.getResources().getString(R.string.SN);
|
||||
SN = DeviceInfoUtils.getDeviceSerial();
|
||||
Timber.i("SN: " + SN);
|
||||
//SN = thisContext.getResources().getString(R.string.SN);
|
||||
SN = DeviceInfoUtils.getAndroidID(thisContext);
|
||||
accessToken = thisContext.getResources().getString(R.string.access_token);
|
||||
// 创建设备信息对象并设置设备相关属性
|
||||
DeviceInfo deviceInfo = new DeviceInfo();
|
||||
|
|
|
|||
|
|
@ -1,15 +1,16 @@
|
|||
package com.nbee.echolink.utils;
|
||||
|
||||
import java.util.Locale;
|
||||
|
||||
import android.content.Context;
|
||||
import android.os.Build;
|
||||
import android.provider.Settings;
|
||||
import android.telephony.TelephonyManager;
|
||||
import android.util.Log;
|
||||
|
||||
public class DeviceInfoUtils {
|
||||
/**
|
||||
* 获取设备宽度(px)
|
||||
*
|
||||
*/
|
||||
public static int getDeviceWidth(Context context) {
|
||||
return context.getResources().getDisplayMetrics().widthPixels;
|
||||
|
|
@ -21,6 +22,7 @@ public class DeviceInfoUtils {
|
|||
public static int getDeviceHeight(Context context) {
|
||||
return context.getResources().getDisplayMetrics().heightPixels;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取厂商名
|
||||
**/
|
||||
|
|
@ -64,8 +66,6 @@ public class DeviceInfoUtils {
|
|||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* fingerprit 信息
|
||||
**/
|
||||
public static String getDeviceFubgerprint() {
|
||||
|
|
@ -74,7 +74,6 @@ public class DeviceInfoUtils {
|
|||
|
||||
/**
|
||||
* 硬件名
|
||||
*
|
||||
**/
|
||||
public static String getDeviceHardware() {
|
||||
return android.os.Build.HARDWARE;
|
||||
|
|
@ -82,14 +81,12 @@ public class DeviceInfoUtils {
|
|||
|
||||
/**
|
||||
* 主机
|
||||
*
|
||||
**/
|
||||
public static String getDeviceHost() {
|
||||
return android.os.Build.HOST;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* 显示ID
|
||||
**/
|
||||
public static String getDeviceDisplay() {
|
||||
|
|
@ -98,15 +95,24 @@ public class DeviceInfoUtils {
|
|||
|
||||
/**
|
||||
* ID
|
||||
*
|
||||
**/
|
||||
public static String getDeviceId() {
|
||||
return android.os.Build.ID;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取手机用户名
|
||||
* 获取设备的Android ID。
|
||||
*
|
||||
* @param context 上下文对象,用于访问应用特定的资源和类。
|
||||
* @return 设备唯一的Android ID,是一个64位的十进制字符串。
|
||||
*/
|
||||
public static String getAndroidID(Context context) {
|
||||
// 通过Settings.Secure.getString获取设备的Android ID
|
||||
return Settings.Secure.getString(context.getContentResolver(), Settings.Secure.ANDROID_ID);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取手机用户名
|
||||
**/
|
||||
public static String getDeviceUser() {
|
||||
return android.os.Build.USER;
|
||||
|
|
|
|||
Loading…
Reference in New Issue