huwanxiao 10 months ago
parent
commit
db675f94a6

+ 2 - 2
app/src/main/java/com/naz/sdkdemo/AppConfig.java

@@ -10,8 +10,8 @@ import com.naz.sdkdemo.utils.SPUtils;
 public class AppConfig {
     public static final boolean IS_DEBUG =true;//true打印数据
 
-    public static final String APP_VERSION_CODE = "2.24.0918";//true打印数据
-    public static final String APP_VERSION = "正式-" + APP_VERSION_CODE;//true打印数据
+    public static final String APP_VERSION_CODE = "2.24.0927";//true打印数据
+    public static final String APP_VERSION = "正式版本-" + APP_VERSION_CODE;//true打印数据
     public static final String REMARK = "1. 新增: 大小版本更新\n" +
             "2.新增: 添加全局日志的捕获\n" +
             "3.更新: 打印格式的调整";

+ 3 - 3
app/src/main/java/com/naz/sdkdemo/MainActivity.java

@@ -2202,7 +2202,7 @@ public class MainActivity extends BaseActivity {
 //                    netWorkType = 1;
                     new Handler(Looper.getMainLooper()).post(() -> {
                         lastConnectTime = System.currentTimeMillis();
-                        XToast.showToast("正在使用以太网");
+                        XToast.showToast("网络状况良好");
                         progressHUD2.dismiss();
                     });
                 }
@@ -2218,7 +2218,7 @@ public class MainActivity extends BaseActivity {
 //                    netWorkType = 2;
                     new Handler(Looper.getMainLooper()).post(() -> {
                         lastConnectTime = System.currentTimeMillis();
-                        XToast.showToast("正在使用Wifi");
+                        XToast.showToast("网络状况良好");
                         progressHUD2.dismiss();
                     });
                 }
@@ -2238,7 +2238,7 @@ public class MainActivity extends BaseActivity {
 //                    netWorkType = 3;
                     new Handler(Looper.getMainLooper()).post(() -> {
                         lastConnectTime = System.currentTimeMillis();
-                        XToast.showToast("正在使用移动网络");
+                        XToast.showToast("网络状况良好");
                         progressHUD2.dismiss();
                     });
                 }