ソースを参照

尝试适配鸿蒙系统
切换http请求工具类为okhttp

hanwenjie 1 年間 前
コミット
e106f83864

+ 1 - 1
app/build.gradle

@@ -105,7 +105,7 @@ dependencies {
     // AndroidX 版本
     implementation 'com.github.jenly1314:zxing-lite:2.2.1'
     implementation group: 'cn.hutool', name: 'hutool-core', version: '5.8.20'
-    implementation group: 'cn.hutool', name: 'hutool-http', version: '5.8.20'
+    implementation 'com.squareup.okhttp3:okhttp:4.9.0'
 //    implementation files('libs/pgy_analytics_sdk.jar')
     implementation 'com.tencent.bugly:crashreport:latest.release' //其中latest.release指代最新Bugly SDK版本号,也可以指定明确的版本号,例如4.0.3
     api "com.tencent.vasdolly:helper:3.0.6"

+ 12 - 9
app/src/main/java/com/info666/app/infraredRemote/MainActivity.java

@@ -1,13 +1,8 @@
 package com.info666.app.infraredRemote;
 
-import androidx.annotation.NonNull;
-import androidx.annotation.Nullable;
-import androidx.appcompat.app.AppCompatActivity;
-
 import android.app.Activity;
 import android.app.AlertDialog;
 import android.content.Context;
-import android.content.DialogInterface;
 import android.content.Intent;
 import android.content.SharedPreferences;
 import android.content.pm.PackageManager;
@@ -21,6 +16,10 @@ import android.widget.Button;
 import android.widget.EditText;
 import android.widget.Toast;
 
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+import androidx.appcompat.app.AppCompatActivity;
+
 import com.alibaba.fastjson2.JSON;
 import com.alibaba.fastjson2.JSONArray;
 import com.alibaba.fastjson2.JSONObject;
@@ -29,8 +28,9 @@ import com.info666.app.infraredRemote.activity.MyCaptureActivity;
 import com.king.zxing.CameraScan;
 import com.tencent.vasdolly.helper.ChannelReaderUtil;
 
-
-import cn.hutool.http.HttpUtil;
+import okhttp3.OkHttpClient;
+import okhttp3.Request;
+import okhttp3.Response;
 
 public class MainActivity extends AppCompatActivity implements View.OnClickListener, Handler.Callback {
 
@@ -75,8 +75,11 @@ public class MainActivity extends AppCompatActivity implements View.OnClickListe
         new Thread(()->{
             Message message = new Message();
             try {
-                String result = HttpUtil.get("http://ykapi.sh-jh.cn/api/api/v1/appConfig/getAppConfig",10 * 1000);
-                JSONObject jsonObject = JSONObject.parseObject(result);
+                OkHttpClient httpClient = new OkHttpClient();
+                Response response = httpClient.newCall(
+                        new Request.Builder().url("http://ykapi.sh-jh.cn/api/api/v1/appConfig/getAppConfig").build()).
+                        execute();
+                JSONObject jsonObject = JSONObject.parseObject(response.body().string());
                 JSONArray jsonArray = jsonObject.getJSONArray("data");
                 message.what = 200;
                 message.obj = jsonArray.getJSONObject(0).toJSONString();

+ 7 - 5
app/src/main/java/com/info666/app/infraredRemote/api/ConsumerIrManagerApi.java

@@ -21,9 +21,11 @@ public class ConsumerIrManagerApi {
 
     public ConsumerIrManagerApi(Context context) {
         //Android4.4才开始支持红外功能
-        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
-            // 获取系统的红外遥控服务
+        // 获取系统的红外遥控服务
+        try {
             service = (android.hardware.ConsumerIrManager) context.getApplicationContext().getSystemService(Context.CONSUMER_IR_SERVICE);
+        }catch (Exception e){
+            CrashReport.postCatchedException(e);
         }
         HandlerThread handlerThread = new HandlerThread("consumerIrThread");//创建一个handlerThread线程
         handlerThread.start();//启动该线程
@@ -53,7 +55,7 @@ public class ConsumerIrManagerApi {
 
     public boolean checkHasIrEmitter(){
         //android4.4及以上版本&有红外功能
-        if (service != null && Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
+        if (service != null) {
             BuglyLog.d("ConsumerIrManagerApi", "hasIrEmitter("+service.hasIrEmitter()+")");
             return service.hasIrEmitter();
         }
@@ -71,7 +73,7 @@ public class ConsumerIrManagerApi {
      */
     @JavascriptInterface
     public void transmit(int carrierFrequency, int[] pattern) {
-        if (service != null && Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
+        if (service != null) {
             //异步发射
             mHandler.post(() -> {
                 try {
@@ -94,7 +96,7 @@ public class ConsumerIrManagerApi {
     @JavascriptInterface
     public String getCarrierFrequencies() {
         Log.d("ConsumerIrManagerApi","getCarrierFrequencies()");
-        if (service != null && Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
+        if (service != null) {
             return JSON.toJSONString(service.getCarrierFrequencies());
         }
         return null;