-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathAppConstants.java
105 lines (82 loc) · 4.38 KB
/
AppConstants.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
package com.scan;
/**
* @author khanhxu
*/
public class AppConstants {
// Constant pre
public static class Config {
// File name config
public static final String CONFIG_FILE_NAME = "bluezone_config.txt";
// Index key, duration, interval
public static final int CONFIG_FILE_INDEX_KEY = 0;
public static final int CONFIG_FILE_INDEX_VALUE = 1;
public static final int CONFIG_FILE_INDEX_DURATION = 1;
public static final int CONFIG_FILE_INDEX_INTERVAL = 2;
// Count
public static final int CONFIG_FILE_DEFAULT_COUNT = 2;
public static final int CONFIG_FILE_SCAN_COUNT = 3;
// Value config
public static final String CONFIG_FILE_VALUE_NOT = "0";
public static final String CONFIG_FILE_VALUE_OK = "1";
// Config log file
public static final boolean IS_CONFIG_LOG_FILE = true;
// Config log battery
public static final boolean IS_CONFIG_LOG_BATTERY = false;
// Config Scan Devices
public static final boolean IS_CONFIG_SCAN_DEVICES = false;
// Default
public static final long DEFAULT_BROADCAST_BLE_DURATION = 15 * 1000;
public static final long DEFAULT_BROADCAST_BLE_INTERVAL = 15 * 1000;
public static final long DEFAULT_SCAN_BLE_DURATION = 40 * 1000;
public static final long DEFAULT_SCAN_BLE_INTERVAL = 260 * 1000;
public static final long DEFAULT_SCAN_DEVICES_DURATION = 40 * 1000;
public static final long DEFAULT_SCAN_DEVICES_INTERVAL = 260 * 1000;
public static final long DEFAULT_FULL_DURATION = 60 * 1000; //(2 * 60 + 30) * 1000;
public static final long DEFAULT_FULL_REPORT_DELAY_DURATION = 25 * 1000;
public static final long DEFAULT_FULL_INTERVAL = 5 * 1000;
public static final long DEFAULT_RESCAN_INTERVAL = 5 * 1000;
// Enable Bluetooth level
public static final int DEFAULT_ENABLE_BLUETTOOTH_BATTERY_LEVEL = 15;
// Time interval enable bluetooth
public static final long DEFAULT_ENABLE_BLUETTOOTH_INTERVAL = 5 * 60 * 1000;
// Time insert
public static final long TIME_DELAY_INSERT = 5 * 1000;
// Timmer check permisson to create notification
public static final long DEFAULT_INTERVAL_CHECK_PERMISSON = 2 * 60 * 1000;
// Timeout connect
public static final long TIMEOUT_CONNECT = 10 * 1000;
// Time delay report scan
public static final long TIME_SCAN_BLE_REPORT_DELAY = 10 * 1000;
// ??
public static long DATABASE_MAX_ROW = 100000;
public static long DATABASE_MAX_DAY = 100000;
// CongTM: time default send analytics
public static final long DEFAULT_SEND_ANALYTICS = 60 * 60 * 1000;
public static final long TIME_AUTOMATIC_ENABLE_BLUETOOTH = 60 * 60 * 1000;
}
// UUID Cần phát và bắt
public static final String BLUEZONE_UUID = "4E56"; // VN
public static final int BLE_ID = 8885; // XU
public static final String BLE_UUID_IOS = "0000" + BLUEZONE_UUID + "-73F5-4BC4-A12F-17D1AD07A667";
public static final String BLE_UUID_ANDROID = "0000" + BLUEZONE_UUID + "-0000-1000-8000-00805F9B34FB";
public static final String BLE_UUID_CHARECTIC = "0000" + BLUEZONE_UUID + "-73F5-4BC4-A12F-17D1AD07A689";
public static final int DEFAUT_MANUFACTOR_IOS = 0x004c;
public static final byte[] DEFAUT_MANUFACTOR_BYTE_IOS = new byte[] {1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
public static final byte[] BLUEZONE_BYTE_NONE = new byte[] {0};
// Notification
public static final String NOTIFICATION_CHANNEL_ID = "bluezone-service-channel";
public static final String NOTIFICATION_CHANNEL_NAME = "Bluezone Service Channel";
public static final int NOTIFICATION_CHANNEL_ID_CODE = 42020;
public static final int NOTIFICATION_SERVICE_BLUE_ZONE_ID = 2020;
public static final int NOTIFICATION_SCAN_ID = 954835;
public static final int NOTIFICATION_ENABLE_BLUETOOTH_ID = 954836;
// Alarm
public static final int ALARM_AUTOMATIC_ENABLE_BLUETOOTH = 20;
// File
public static final String PATH_APP = "/Bluezone/";
public static final String LOG_FILE_NAME = "log.txt";
public static final String LOG_FILE_NAME_BATTERY = "log_battery.txt";
// PlatfromName
public static final String PLATFORM_ANDROID = "Android";
public static final String PLATFORM_IOS = "iOS";
}