Commit a9850a1a a9850a1a85232fda7ff44ae4e4074fb65482ca50 by 胡波

适配高版本http请求

1 parent 8c5d4168
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
16 android:fullBackupContent="@xml/backup_rules" 16 android:fullBackupContent="@xml/backup_rules"
17 android:icon="@mipmap/ic_launcher" 17 android:icon="@mipmap/ic_launcher"
18 android:label="@string/app_name" 18 android:label="@string/app_name"
19 android:usesCleartextTraffic="true"
19 android:roundIcon="@mipmap/ic_launcher_round" 20 android:roundIcon="@mipmap/ic_launcher_round"
20 android:supportsRtl="true" 21 android:supportsRtl="true"
21 android:theme="@style/Theme.IPTVLauncherTest" 22 android:theme="@style/Theme.IPTVLauncherTest"
......
...@@ -6,8 +6,9 @@ public class TestConfig { ...@@ -6,8 +6,9 @@ public class TestConfig {
6 //烽火盒子 6 //烽火盒子
7 public static final int FiberHome = 1; 7 public static final int FiberHome = 1;
8 8
9 //测试目标盒子
9 public static int testDist = FiberHome; 10 public static int testDist = FiberHome;
10 11
11 //启动页地址 12 //启动页地址
12 public static final String homeUrl = "http://192.168.12.98:8080/JsAppLaunch/JsAppStartUp.html"; 13 public static final String homeUrl = "http://139.196.145.150:8060/JsAppLaunch/JsAppStartUp.html";
13 } 14 }
......