Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
apk_product
/
IPTVLaunchTest
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
8c5d4168
...
8c5d416876330a61b573d0200763c63ef6835be4
authored
2024-10-14 09:14:35 +0800
by
胡波
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
调整启动页地址配置
1 parent
0d19e527
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletions
app/src/main/java/com/topdraw/iptvlaunchertest/MainActivity.java
app/src/main/java/com/topdraw/iptvlaunchertest/TestConfig.java
app/src/main/java/com/topdraw/iptvlaunchertest/MainActivity.java
View file @
8c5d416
...
...
@@ -36,7 +36,7 @@ public class MainActivity extends AppCompatActivity {
if
(
Build
.
VERSION
.
SDK_INT
>=
Build
.
VERSION_CODES
.
M
)
{
requestPermissions
(
permissions
,
0
);
}
webView
.
loadUrl
(
"http://192.168.12.98:8080/JsAppLaunch/JsAppStartUp.html"
);
webView
.
loadUrl
(
TestConfig
.
homeUrl
);
}
private
void
initWeb
()
{
...
...
app/src/main/java/com/topdraw/iptvlaunchertest/TestConfig.java
View file @
8c5d416
...
...
@@ -7,4 +7,7 @@ public class TestConfig {
public
static
final
int
FiberHome
=
1
;
public
static
int
testDist
=
FiberHome
;
//启动页地址
public
static
final
String
homeUrl
=
"http://192.168.12.98:8080/JsAppLaunch/JsAppStartUp.html"
;
}
...
...
Please
register
or
sign in
to post a comment