commit bce11daee79a7264351f585c9c0737d55dd30129 Author: wangsiyuan <2392948297@qq.com> Date: Wed Dec 6 20:04:47 2023 +0800 first commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e4c1312 --- /dev/null +++ b/.gitignore @@ -0,0 +1,113 @@ +*.iml +.gradle +/local.properties +/.idea/caches +/.idea/libraries +/.idea/modules.xml +/.idea/workspace.xml +/.idea/navEditor.xml +/.idea/assetWizardSettings.xml +.DS_Store +/build +/captures +.externalNativeBuild +.cxx +local.properties + +# Built application files +*.apk +*.ap_ +*.aab + +# Files for the Dalvik VM +*.dex + +# Java class files +*.class + +# Generated files +bin/ +gen/ +out/ +release/ + +# Gradle files +.gradle/ +build/ + +# Local configuration file (sdk path, etc) +local.properties + +# Proguard folder generated by Eclipse +proguard/ + +# Log Files +*.log + +# Android Studio Navigation editor temp files +.navigation/ + +# Android Studio captures folder +captures/ + +# IntelliJ +*.iml +.idea/ +.idea_modules/ + +# Keystore files +*.jks +*.keystore + +# External native build folder generated in Android Studio 2.2 and later +.externalNativeBuild + +# Google Services (e.g. APIs or Firebase) +google-services.json + +# Freeline +freeline.py +freeline/ +freeline_project_description.json + +# fastlane +fastlane/report.xml +fastlane/Preview.html +fastlane/screenshots +fastlane/test_output +fastlane/readme.md + +# Version control +vcs.xml + +# lint +lint/intermediates/ +lint/generated/ +lint/outputs/ +lint/tmp/ +lint/reports/ + +# Gradle and Maven with auto-import +# When using Gradle or Maven with auto-import, you should exclude module files, +# since they will be recreated, and may cause churn. Uncomment if using +# auto-import. +# .idea/modules.xml +# .idea/*.iml +# .idea/modules +# *.iml +# *.ipr + +# CMake +cmake-build-debug/ + +# Local config +.idea/workspace.xml +.idea/tasks.xml +.idea/gradle.xml +.idea/assetWizardSettings.xml +.idea/dictionaries +.idea/libraries +.idea/caches + +# Android Patch +gen-external-apklibs diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/app/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle new file mode 100644 index 0000000..d05a4be --- /dev/null +++ b/app/build.gradle @@ -0,0 +1,45 @@ +plugins { + id 'com.android.application' +} + +android { + namespace 'com.nbee.echolink' + compileSdk 31 + + defaultConfig { + applicationId "com.nbee.echolink" + minSdk 26 + targetSdk 31 + versionCode 1 + versionName "1.0" + + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' + } + } + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } +} + +dependencies { + // https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp + implementation 'com.squareup.okhttp3:okhttp:4.10.0' + // https://mvnrepository.com/artifact/org.projectlombok/lombok + compileOnly 'org.projectlombok:lombok:1.18.28' + // https://mvnrepository.com/artifact/com.google.code.gson/gson + implementation 'com.google.code.gson:gson:2.10' + + implementation 'androidx.appcompat:appcompat:1.2.0' + implementation 'com.google.android.material:material:1.3.0' + implementation 'androidx.constraintlayout:constraintlayout:2.1.3' + testImplementation 'junit:junit:4.13.2' + androidTestImplementation 'androidx.test.ext:junit:1.1.3' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' +} \ No newline at end of file diff --git a/app/debug/output-metadata.json b/app/debug/output-metadata.json new file mode 100644 index 0000000..5ab7e03 --- /dev/null +++ b/app/debug/output-metadata.json @@ -0,0 +1,20 @@ +{ + "version": 3, + "artifactType": { + "type": "APK", + "kind": "Directory" + }, + "applicationId": "com.nbee.echolink", + "variantName": "debug", + "elements": [ + { + "type": "SINGLE", + "filters": [], + "attributes": [], + "versionCode": 1, + "versionName": "1.0", + "outputFile": "app-debug.apk" + } + ], + "elementType": "File" +} \ No newline at end of file diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro new file mode 100644 index 0000000..481bb43 --- /dev/null +++ b/app/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/app/src/androidTest/java/com/nbee/echolink/ExampleInstrumentedTest.java b/app/src/androidTest/java/com/nbee/echolink/ExampleInstrumentedTest.java new file mode 100644 index 0000000..633b1b7 --- /dev/null +++ b/app/src/androidTest/java/com/nbee/echolink/ExampleInstrumentedTest.java @@ -0,0 +1,26 @@ +package com.nbee.echolink; + +import android.content.Context; + +import androidx.test.platform.app.InstrumentationRegistry; +import androidx.test.ext.junit.runners.AndroidJUnit4; + +import org.junit.Test; +import org.junit.runner.RunWith; + +import static org.junit.Assert.*; + +/** + * Instrumented test, which will execute on an Android device. + * + * @see Testing documentation + */ +@RunWith(AndroidJUnit4.class) +public class ExampleInstrumentedTest { + @Test + public void useAppContext() { + // Context of the app under test. + Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); + assertEquals("com.nbee.echolink", appContext.getPackageName()); + } +} \ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..52506e8 --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/java/com/nbee/echolink/DeviceInfo.java b/app/src/main/java/com/nbee/echolink/DeviceInfo.java new file mode 100644 index 0000000..25bb18a --- /dev/null +++ b/app/src/main/java/com/nbee/echolink/DeviceInfo.java @@ -0,0 +1,11 @@ +package com.nbee.echolink; + +import android.os.Build; + +public class DeviceInfo { + + public static int getApiVersion() { + return Build.VERSION.SDK_INT; + } + +} diff --git a/app/src/main/java/com/nbee/echolink/MainActivity.java b/app/src/main/java/com/nbee/echolink/MainActivity.java new file mode 100644 index 0000000..fd9c41f --- /dev/null +++ b/app/src/main/java/com/nbee/echolink/MainActivity.java @@ -0,0 +1,28 @@ +package com.nbee.echolink; + +import androidx.appcompat.app.AppCompatActivity; + +import android.content.Intent; +import android.content.IntentFilter; +import android.os.Bundle; +import android.telephony.TelephonyManager; +import android.util.Log; +import android.telephony.PhoneStateListener; +import android.telephony.TelephonyManager; +import com.nbee.echolink.broadcast.PhoneCallReceiver; +import com.nbee.echolink.broadcast.SMSReceiver; +import com.nbee.echolink.service.MonitorService; + +public class MainActivity extends AppCompatActivity { + private final String TAG = "MainActivity"; + + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_main); + // 启动MonitorService服务 + Intent serviceIntent = new Intent(this, MonitorService.class); + startService(serviceIntent); + } +} \ No newline at end of file diff --git a/app/src/main/java/com/nbee/echolink/broadcast/BootCompletedReceiver.java b/app/src/main/java/com/nbee/echolink/broadcast/BootCompletedReceiver.java new file mode 100644 index 0000000..2b8dd55 --- /dev/null +++ b/app/src/main/java/com/nbee/echolink/broadcast/BootCompletedReceiver.java @@ -0,0 +1,18 @@ +package com.nbee.echolink.broadcast; + +import android.content.BroadcastReceiver; +import android.content.Context; +import android.content.Intent; + +import com.nbee.echolink.service.MonitorService; + +public class BootCompletedReceiver extends BroadcastReceiver { + @Override + public void onReceive(Context context, Intent intent) { + if (Intent.ACTION_BOOT_COMPLETED.equals(intent.getAction())) { + // 启动您的服务或活动 + Intent serviceIntent = new Intent(context, MonitorService.class); + context.startService(serviceIntent); + } + } +} diff --git a/app/src/main/java/com/nbee/echolink/broadcast/PhoneCallReceiver.java b/app/src/main/java/com/nbee/echolink/broadcast/PhoneCallReceiver.java new file mode 100644 index 0000000..b247955 --- /dev/null +++ b/app/src/main/java/com/nbee/echolink/broadcast/PhoneCallReceiver.java @@ -0,0 +1,32 @@ +package com.nbee.echolink.broadcast; + +import android.content.BroadcastReceiver; +import android.content.Context; +import android.content.Intent; +import android.telephony.PhoneStateListener; +import android.telephony.TelephonyManager; + +import com.nbee.echolink.service.MonitorService; + +public class PhoneCallReceiver extends BroadcastReceiver { + private static final String TAG = "PhoneCallReceiver"; + + @Override + public void onReceive(Context context, Intent intent) { + TelephonyManager tm = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE); + if (tm != null) { + tm.listen(new PhoneStateListener() { + @Override + public void onCallStateChanged(int state, String incomingNumber) { + super.onCallStateChanged(state, incomingNumber); + if (state == TelephonyManager.CALL_STATE_RINGING) { + // 来电号码 + Intent serviceIntent = new Intent(context, MonitorService.class); + serviceIntent.putExtra("incomingNumber", incomingNumber); + context.startService(serviceIntent); + } + } + }, PhoneStateListener.LISTEN_CALL_STATE); + } + } +} diff --git a/app/src/main/java/com/nbee/echolink/broadcast/SMSReceiver.java b/app/src/main/java/com/nbee/echolink/broadcast/SMSReceiver.java new file mode 100644 index 0000000..015e3d4 --- /dev/null +++ b/app/src/main/java/com/nbee/echolink/broadcast/SMSReceiver.java @@ -0,0 +1,48 @@ +package com.nbee.echolink.broadcast; + +import android.content.BroadcastReceiver; +import android.content.Context; +import android.content.Intent; +import android.os.Bundle; +import android.telephony.SmsMessage; +import android.util.Log; + +import com.nbee.echolink.service.MonitorService; + +public class SMSReceiver extends BroadcastReceiver { + + private static final String TAG = "SMSReceiver"; + private static final String SMS_RECEIVED_ACTION = "android.provider.Telephony.SMS_RECEIVED"; + + @Override + public void onReceive(Context context, Intent intent) { + if (SMS_RECEIVED_ACTION.equals(intent.getAction())) { + Bundle bundle = intent.getExtras(); + if (bundle != null) { + Object[] pdus = (Object[]) bundle.get("pdus"); + if (pdus != null) { + StringBuilder fullMessage = new StringBuilder(); + String sender = null; + + for (Object pdu : pdus) { + SmsMessage smsMessage = SmsMessage.createFromPdu((byte[]) pdu); + if (sender == null) { + // 只需要从第一部分获取发件人号码 + sender = smsMessage.getDisplayOriginatingAddress(); + } + // 拼接每个部分的消息内容 + fullMessage.append(smsMessage.getMessageBody()); + } + + Log.d(TAG, "Sender: " + sender + ", Message: " + fullMessage.toString()); + // 在这里处理完整的短信内容 + Intent serviceIntent = new Intent(context, MonitorService.class); + serviceIntent.putExtra("sender", sender); + serviceIntent.putExtra("messageBody", fullMessage.toString()); + context.startService(serviceIntent); + } + } + } + } + +} diff --git a/app/src/main/java/com/nbee/echolink/model/CallInfo.java b/app/src/main/java/com/nbee/echolink/model/CallInfo.java new file mode 100644 index 0000000..71ffe16 --- /dev/null +++ b/app/src/main/java/com/nbee/echolink/model/CallInfo.java @@ -0,0 +1,40 @@ +package com.nbee.echolink.model; + + + +public class CallInfo { + private String phoneNumber; + private String callTime; + + public CallInfo() { + } + + public CallInfo(String phoneNumber, String callTime) { + this.phoneNumber = phoneNumber; + this.callTime = callTime; + } + + public String getPhoneNumber() { + return phoneNumber; + } + + public void setPhoneNumber(String phoneNumber) { + this.phoneNumber = phoneNumber; + } + + public String getCallTime() { + return callTime; + } + + public void setCallTime(String callTime) { + this.callTime = callTime; + } + + @Override + public String toString() { + return "CallInfo{" + + "phoneNumber='" + phoneNumber + '\'' + + ", callTime='" + callTime + '\'' + + '}'; + } +} diff --git a/app/src/main/java/com/nbee/echolink/model/SMSInfo.java b/app/src/main/java/com/nbee/echolink/model/SMSInfo.java new file mode 100644 index 0000000..3807aa4 --- /dev/null +++ b/app/src/main/java/com/nbee/echolink/model/SMSInfo.java @@ -0,0 +1,52 @@ +package com.nbee.echolink.model; + +import lombok.Data; + + +public class SMSInfo { + private String smsNumber; + private String smsAcceptanceTime; + private String smsContent; + + public SMSInfo() { + } + + public SMSInfo(String smsNumber, String smsAcceptanceTime, String smsContent) { + this.smsNumber = smsNumber; + this.smsAcceptanceTime = smsAcceptanceTime; + this.smsContent = smsContent; + } + + public String getSmsNumber() { + return smsNumber; + } + + public void setSmsNumber(String smsNumber) { + this.smsNumber = smsNumber; + } + + public String getSmsAcceptanceTime() { + return smsAcceptanceTime; + } + + public void setSmsAcceptanceTime(String smsAcceptanceTime) { + this.smsAcceptanceTime = smsAcceptanceTime; + } + + public String getSmsContent() { + return smsContent; + } + + public void setSmsContent(String smsContent) { + this.smsContent = smsContent; + } + + @Override + public String toString() { + return "SMSInfo{" + + "smsNumber='" + smsNumber + '\'' + + ", smsAcceptanceTime='" + smsAcceptanceTime + '\'' + + ", smsContent='" + smsContent + '\'' + + '}'; + } +} \ No newline at end of file diff --git a/app/src/main/java/com/nbee/echolink/response/ApiResponse.java b/app/src/main/java/com/nbee/echolink/response/ApiResponse.java new file mode 100644 index 0000000..4a98e35 --- /dev/null +++ b/app/src/main/java/com/nbee/echolink/response/ApiResponse.java @@ -0,0 +1,58 @@ +package com.nbee.echolink.response; + +import lombok.Data; + +public class ApiResponse { + private String code; + + /** Response message. */ + private String msg; + + /** Response timestamp. */ + private Long timestamp; + + /** Response data. */ + private T data; + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code; + } + + public String getMsg() { + return msg; + } + + public void setMsg(String msg) { + this.msg = msg; + } + + public Long getTimestamp() { + return timestamp; + } + + public void setTimestamp(Long timestamp) { + this.timestamp = timestamp; + } + + public T getData() { + return data; + } + + public void setData(T data) { + this.data = data; + } + + @Override + public String toString() { + return "ApiResponse{" + + "code='" + code + '\'' + + ", msg='" + msg + '\'' + + ", timestamp=" + timestamp + + ", data=" + data + + '}'; + } +} diff --git a/app/src/main/java/com/nbee/echolink/service/MonitorService.java b/app/src/main/java/com/nbee/echolink/service/MonitorService.java new file mode 100644 index 0000000..3f08927 --- /dev/null +++ b/app/src/main/java/com/nbee/echolink/service/MonitorService.java @@ -0,0 +1,121 @@ +package com.nbee.echolink.service; + +import android.app.Notification; +import android.app.NotificationChannel; +import android.app.NotificationManager; +import android.app.Service; +import android.content.Intent; +import android.os.Build; +import android.os.IBinder; +import android.util.Log; + +import androidx.annotation.Nullable; +import androidx.core.app.NotificationCompat; + +import com.nbee.echolink.R; +import com.nbee.echolink.model.CallInfo; +import com.nbee.echolink.model.SMSInfo; +import com.nbee.echolink.utils.NetworkUtil; + +import java.text.SimpleDateFormat; +import java.util.Date; + +public class MonitorService extends Service { + private NetworkUtil networkUtil; + private static final String TAG = "MonitorService"; + private String lastPhoneNumber = null; + private long lastCallTime = 0; + @Override + public void onCreate() { + super.onCreate(); + startForegroundService(); + networkUtil = new NetworkUtil(this); + } + + @Override + public int onStartCommand(Intent intent, int flags, int startId) { + if (intent != null) { + if (intent.hasExtra("incomingNumber")) { + String incomingNumber = intent.getStringExtra("incomingNumber"); + Log.i(TAG, "获取到来电信息,号码: "+ incomingNumber); + sendCallInfoToServer(incomingNumber); + } else if (intent.hasExtra("sender") && intent.hasExtra("messageBody")) { + String sender = intent.getStringExtra("sender"); + String messageBody = intent.getStringExtra("messageBody"); + Log.i(TAG, "获取到短信信息,号码: "+ sender); + sendSmsInfoToServer(sender, messageBody); + } + } + return START_STICKY; + } + + private void sendCallInfoToServer(String incomingNumber) { + if (incomingNumber.equals("null") || incomingNumber == null) { + return; + } + + long currentTimeMillis = System.currentTimeMillis(); + if (incomingNumber.equals(lastPhoneNumber) && (currentTimeMillis - lastCallTime) < 70000) { + // 如果电话号码与上次相同,且在70秒之内,则不执行请求 + Log.i(TAG, "sendCallInfoToServer: 电话号码与上次相同,且在70秒之内,不执行请求."); + return; + } + + // 更新存储的电话号码和时间戳 + lastPhoneNumber = incomingNumber; + lastCallTime = currentTimeMillis; + String currentTime = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()); + + CallInfo callInfo = new CallInfo(); + callInfo.setCallTime(currentTime); + callInfo.setPhoneNumber(incomingNumber); + networkUtil.postRequest(callInfo); + } + + private void sendSmsInfoToServer(String sender,String messageBody){ + if (checkNullString(sender,messageBody)){ + return; + } + String currentTime = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()); + SMSInfo smsInfo = new SMSInfo(); + smsInfo.setSmsNumber(sender); + smsInfo.setSmsContent(messageBody); + smsInfo.setSmsAcceptanceTime(currentTime); + networkUtil.postRequest(smsInfo); + } + + private boolean checkNullString(String a, String b){ + if (a == null || b == null){ + return true; + } + if (a.equals("null") || b.equals("null")){ + return true; + } + return false; + } + + private void startForegroundService() { + // 创建通知频道(仅在API 26及以上版本中需要) + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { + NotificationChannel channel = new NotificationChannel("channel_id", "Channel Name", NotificationManager.IMPORTANCE_DEFAULT); + NotificationManager notificationManager = getSystemService(NotificationManager.class); + notificationManager.createNotificationChannel(channel); + } + + // 创建通知 + Notification notification = new NotificationCompat.Builder(this, "channel_id") + .setContentTitle("服务运行中") + .setContentText("EchoLink正在运行") + .setSmallIcon(R.drawable.ic_notification) // 确保您有这个图标 + .build(); + + // 启动前台服务 + startForeground(1, notification); + } + + @Nullable + @Override + public IBinder onBind(Intent intent) { + return null; // 不提供绑定服务的接口 + } +} diff --git a/app/src/main/java/com/nbee/echolink/utils/DeviceInfoUtils.java b/app/src/main/java/com/nbee/echolink/utils/DeviceInfoUtils.java new file mode 100644 index 0000000..e69de29 diff --git a/app/src/main/java/com/nbee/echolink/utils/NetworkUtil.java b/app/src/main/java/com/nbee/echolink/utils/NetworkUtil.java new file mode 100644 index 0000000..5915de4 --- /dev/null +++ b/app/src/main/java/com/nbee/echolink/utils/NetworkUtil.java @@ -0,0 +1,95 @@ +package com.nbee.echolink.utils; +import android.content.Context; +import android.os.Handler; +import android.util.Log; + +import com.google.gson.Gson; +import com.nbee.echolink.R; +import com.nbee.echolink.model.CallInfo; +import com.nbee.echolink.model.SMSInfo; +import com.nbee.echolink.response.ApiResponse; + + +import java.io.IOException; + +import okhttp3.MediaType; +import okhttp3.OkHttpClient; +import okhttp3.Request; +import okhttp3.RequestBody; + +public class NetworkUtil { + private final String TAG = "NetworkUtil"; + private String callApiUrl; + private String smsApiUrl; + private String accessToken; + private Handler handler = new Handler(); + private static final int MAX_RETRIES = 3; + private static final long RETRY_DELAY_MS = 2000; // 重试延迟,例如2秒 + + // API URL + public NetworkUtil(Context context) { + callApiUrl = context.getResources().getString(R.string.call_api_url); + smsApiUrl = context.getResources().getString(R.string.message_api_url); + accessToken = context.getResources().getString(R.string.access_token); + } + + public void postRequest(T dataObject) { + if (dataObject instanceof CallInfo) { + postRequestWithRetry(dataObject, 0,callApiUrl); + } else if (dataObject instanceof SMSInfo) { + postRequestWithRetry(dataObject, 0,smsApiUrl); + } + } + + private void postRequestWithRetry(T dataObject, int retryCount,String apiUrl) { + OkHttpClient client = new OkHttpClient(); + // ... 构建请求 ... + Request request = buildRequest(dataObject,apiUrl); + + client.newCall(request).enqueue(new okhttp3.Callback() { + @Override + public void onFailure(okhttp3.Call call, IOException e) { + if (retryCount < MAX_RETRIES) { + handler.postDelayed(() -> postRequestWithRetry(dataObject, retryCount + 1,apiUrl), RETRY_DELAY_MS); + } else { + Log.e(TAG, "onFailure: Failed after " + MAX_RETRIES + " attempts", e); + // 超出重试次数,处理失败情况 + } + } + @Override + public void onResponse(okhttp3.Call call, okhttp3.Response response) throws IOException { + if (!response.isSuccessful()) { + // 在这里处理响应错误 + Log.d("onResponse", response.message()); + throw new IOException("Unexpected code " + response); + } + // ... 处理响应 ... + Gson gson1 = new Gson(); + ApiResponse apiResponse = gson1.fromJson(response.body().string(), ApiResponse.class); + if (apiResponse.getCode().equals(0)){ + Log.i(TAG, "onResponse ResponseCode: " + apiResponse.getCode() + "ResponseMessage" + apiResponse.getMsg()); + } + } + }); + } + + private Request buildRequest(T dataObject,String apiUrl){ + Gson gson = new Gson(); + // 将对象转换为JSON字符串 + String json = gson.toJson(dataObject); + + // 创建请求体 + MediaType JSON = MediaType.get("application/json; charset=utf-8"); + RequestBody body = RequestBody.create(json, JSON); + + // 构建请求,并设置请求头 + Request request = new Request.Builder() + .url(apiUrl) + .addHeader("accessToken", accessToken) // 使用加载的accessToken + .addHeader("Content-Type", "application/json") + .post(body) + .build(); + + return request; + } +} diff --git a/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/ic_launcher_background.xml b/app/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..07d5da9 --- /dev/null +++ b/app/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/src/main/res/drawable/ic_notification.xml b/app/src/main/res/drawable/ic_notification.xml new file mode 100644 index 0000000..3b3bdb2 --- /dev/null +++ b/app/src/main/res/drawable/ic_notification.xml @@ -0,0 +1,15 @@ + + + + + diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml new file mode 100644 index 0000000..17eab17 --- /dev/null +++ b/app/src/main/res/layout/activity_main.xml @@ -0,0 +1,18 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..eca70cf --- /dev/null +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..eca70cf --- /dev/null +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/app/src/main/res/mipmap-hdpi/ic_launcher.webp new file mode 100644 index 0000000..c209e78 Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp new file mode 100644 index 0000000..b2dfe3d Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/app/src/main/res/mipmap-mdpi/ic_launcher.webp new file mode 100644 index 0000000..4f0f1d6 Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp new file mode 100644 index 0000000..62b611d Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp new file mode 100644 index 0000000..948a307 Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..1b9a695 Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp new file mode 100644 index 0000000..28d4b77 Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..9287f50 Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp new file mode 100644 index 0000000..aa7d642 Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..9126ae3 Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/values-night/themes.xml b/app/src/main/res/values-night/themes.xml new file mode 100644 index 0000000..c0e1093 --- /dev/null +++ b/app/src/main/res/values-night/themes.xml @@ -0,0 +1,16 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml new file mode 100644 index 0000000..f8c6127 --- /dev/null +++ b/app/src/main/res/values/colors.xml @@ -0,0 +1,10 @@ + + + #FFBB86FC + #FF6200EE + #FF3700B3 + #FF03DAC5 + #FF018786 + #FF000000 + #FFFFFFFF + \ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..5f4413d --- /dev/null +++ b/app/src/main/res/values/strings.xml @@ -0,0 +1,6 @@ + + EchoLink + https://api.kimgo.cn/api/call + https://api.kimgo.cn/api/sms + gKGCDSgWV82XbU0H + \ No newline at end of file diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml new file mode 100644 index 0000000..fde1d4b --- /dev/null +++ b/app/src/main/res/values/themes.xml @@ -0,0 +1,16 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/xml/backup_rules.xml b/app/src/main/res/xml/backup_rules.xml new file mode 100644 index 0000000..fa0f996 --- /dev/null +++ b/app/src/main/res/xml/backup_rules.xml @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/xml/data_extraction_rules.xml b/app/src/main/res/xml/data_extraction_rules.xml new file mode 100644 index 0000000..9ee9997 --- /dev/null +++ b/app/src/main/res/xml/data_extraction_rules.xml @@ -0,0 +1,19 @@ + + + + + + + \ No newline at end of file diff --git a/app/src/test/java/com/nbee/echolink/ExampleUnitTest.java b/app/src/test/java/com/nbee/echolink/ExampleUnitTest.java new file mode 100644 index 0000000..33457c6 --- /dev/null +++ b/app/src/test/java/com/nbee/echolink/ExampleUnitTest.java @@ -0,0 +1,17 @@ +package com.nbee.echolink; + +import org.junit.Test; + +import static org.junit.Assert.*; + +/** + * Example local unit test, which will execute on the development machine (host). + * + * @see Testing documentation + */ +public class ExampleUnitTest { + @Test + public void addition_isCorrect() { + assertEquals(4, 2 + 2); + } +} \ No newline at end of file diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..90f9008 --- /dev/null +++ b/build.gradle @@ -0,0 +1,5 @@ +// Top-level build file where you can add configuration options common to all sub-projects/modules. +plugins { + id 'com.android.application' version '7.3.0' apply false + id 'com.android.library' version '7.3.0' apply false +} \ No newline at end of file diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..3e927b1 --- /dev/null +++ b/gradle.properties @@ -0,0 +1,21 @@ +# Project-wide Gradle settings. +# IDE (e.g. Android Studio) users: +# Gradle settings configured through the IDE *will override* +# any settings specified in this file. +# For more details on how to configure your build environment visit +# http://www.gradle.org/docs/current/userguide/build_environment.html +# Specifies the JVM arguments used for the daemon process. +# The setting is particularly useful for tweaking memory settings. +org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 +# When configured, Gradle will run in incubating parallel mode. +# This option should only be used with decoupled projects. More details, visit +# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects +# org.gradle.parallel=true +# AndroidX package structure to make it clearer which packages are bundled with the +# Android operating system, and which are packaged with your app's APK +# https://developer.android.com/topic/libraries/support-library/androidx-rn +android.useAndroidX=true +# Enables namespacing of each library's R class so that its R class includes only the +# resources declared in the library itself and none from the library's dependencies, +# thereby reducing the size of the R class for that library +android.nonTransitiveRClass=true \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..e708b1c Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..5aa128f --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +#Wed Nov 29 10:12:03 CST 2023 +distributionBase=GRADLE_USER_HOME +distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip +distributionPath=wrapper/dists +zipStorePath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME diff --git a/gradlew b/gradlew new file mode 100755 index 0000000..4f906e0 --- /dev/null +++ b/gradlew @@ -0,0 +1,185 @@ +#!/usr/bin/env sh + +# +# Copyright 2015 the original author or authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +############################################################################## +## +## Gradle start up script for UN*X +## +############################################################################## + +# Attempt to set APP_HOME +# Resolve links: $0 may be a link +PRG="$0" +# Need this for relative symlinks. +while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi +done +SAVED="`pwd`" +cd "`dirname \"$PRG\"`/" >/dev/null +APP_HOME="`pwd -P`" +cd "$SAVED" >/dev/null + +APP_NAME="Gradle" +APP_BASE_NAME=`basename "$0"` + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD="maximum" + +warn () { + echo "$*" +} + +die () { + echo + echo "$*" + echo + exit 1 +} + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "`uname`" in + CYGWIN* ) + cygwin=true + ;; + Darwin* ) + darwin=true + ;; + MINGW* ) + msys=true + ;; + NONSTOP* ) + nonstop=true + ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD="java" + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then + MAX_FD_LIMIT=`ulimit -H -n` + if [ $? -eq 0 ] ; then + if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then + MAX_FD="$MAX_FD_LIMIT" + fi + ulimit -n $MAX_FD + if [ $? -ne 0 ] ; then + warn "Could not set maximum file descriptor limit: $MAX_FD" + fi + else + warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" + fi +fi + +# For Darwin, add options to specify how the application appears in the dock +if $darwin; then + GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" +fi + +# For Cygwin or MSYS, switch paths to Windows format before running java +if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then + APP_HOME=`cygpath --path --mixed "$APP_HOME"` + CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + + JAVACMD=`cygpath --unix "$JAVACMD"` + + # We build the pattern for arguments to be converted via cygpath + ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` + SEP="" + for dir in $ROOTDIRSRAW ; do + ROOTDIRS="$ROOTDIRS$SEP$dir" + SEP="|" + done + OURCYGPATTERN="(^($ROOTDIRS))" + # Add a user-defined pattern to the cygpath arguments + if [ "$GRADLE_CYGPATTERN" != "" ] ; then + OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" + fi + # Now convert the arguments - kludge to limit ourselves to /bin/sh + i=0 + for arg in "$@" ; do + CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` + CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option + + if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition + eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` + else + eval `echo args$i`="\"$arg\"" + fi + i=`expr $i + 1` + done + case $i in + 0) set -- ;; + 1) set -- "$args0" ;; + 2) set -- "$args0" "$args1" ;; + 3) set -- "$args0" "$args1" "$args2" ;; + 4) set -- "$args0" "$args1" "$args2" "$args3" ;; + 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; + 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; + 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; + 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; + 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; + esac +fi + +# Escape application args +save () { + for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done + echo " " +} +APP_ARGS=`save "$@"` + +# Collect all arguments for the java command, following the shell quoting and substitution rules +eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..ac1b06f --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,89 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..dae1673 --- /dev/null +++ b/settings.gradle @@ -0,0 +1,16 @@ +pluginManagement { + repositories { + gradlePluginPortal() + google() + mavenCentral() + } +} +dependencyResolutionManagement { + repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) + repositories { + google() + mavenCentral() + } +} +rootProject.name = "EchoLink" +include ':app'