Skip to content

Commit cbdd1a8

Browse files
committed
v3.9.9
1 parent 1107cc7 commit cbdd1a8

File tree

7 files changed

+25
-12
lines changed

7 files changed

+25
-12
lines changed

.idea/deploymentTargetSelector.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/deviceManager.xml

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ android {
1414
applicationId = "com.cyh128.hikari_novel"
1515
minSdk = 24
1616
targetSdk = 34 //暂时不要升到35,不然之前的edgeToEdge效果会消失
17-
versionCode = 251019
18-
versionName = "3.9.8"
17+
versionCode = 260102
18+
versionName = "3.9.9"
1919

2020
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
2121
}

app/src/main/java/com/cyh128/hikari_novel/data/source/remote/Network.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ class Network @Inject constructor() {
5454
fun getFromAppWenku8Com(request: String): CallAwait<String> {
5555
//val request = "action=book&do=text&aid=2906&cid=117212&t=0"
5656
return RxHttp
57-
.postForm("http://app.wenku8.com/android.php")
57+
.postForm("https://wenku8-relay.mewx.org")
5858
.addHeader("User-Agent","Dalvik/2.1.0 (Linux; U; Android 15; 23114RD76B Build/AQ3A.240912.001)")
59-
.add("appver", "1.21")
59+
.add("appver", "1.23-nano-mewx")
6060
.add("request", Base64Helper.encodeBase64(request))
6161
.add("timetoken", "${System.currentTimeMillis()}")
6262
.toAwait<String>()

app/src/main/res/xml/network_security_config.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
tools:ignore="AcceptsUserCertificates" /> <!-- 允许用户证书 -->
99
</trust-anchors>
1010
</base-config>
11-
<domain-config cleartextTrafficPermitted="true">
12-
<domain includeSubdomains="TODO">app.wenku8.com</domain>
13-
</domain-config>
11+
<!-- <domain-config cleartextTrafficPermitted="true">-->
12+
<!-- <domain includeSubdomains="TODO">app.wenku8.com</domain>-->
13+
<!-- </domain-config>-->
1414
</network-security-config>

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
plugins {
3-
id("com.android.application") version "8.10.1" apply false
3+
id("com.android.application") version "8.13.2" apply false
44
id("org.jetbrains.kotlin.android") version "2.1.20" apply false
55
id("com.google.devtools.ksp") version "2.1.20-1.0.31" apply false
6-
id("com.android.library") version "8.10.1" apply false
6+
id("com.android.library") version "8.13.2" apply false
77
id("com.google.dagger.hilt.android") version "2.56" apply false
88
}
99

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Sat Jan 27 16:20:12 CST 2024
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)