mirror of
https://github.com/fumiama/copymanga.git
synced 2026-06-04 23:10:23 +08:00
v2.3.4
修复 1. 服务端空回应导致的主页闪退 (fix #81) 升级 1. appver -> 2.2.0 (fix #74) 2. androidx.appcompat -> 1.7.0 3. lottie -> 6.4.1
This commit is contained in:
@@ -11,8 +11,8 @@ android {
|
||||
applicationId 'top.fumiama.copymanga'
|
||||
minSdkVersion 23
|
||||
targetSdkVersion 34
|
||||
versionCode 61
|
||||
versionName '2.3.3'
|
||||
versionCode 62
|
||||
versionName '2.3.4'
|
||||
resourceConfigurations += ['zh', 'zh-rCN']
|
||||
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
@@ -73,7 +73,7 @@ android {
|
||||
dependencies {
|
||||
//noinspection GradleDependency
|
||||
implementation 'androidx.core:core-ktx:1.12.0'
|
||||
implementation 'androidx.appcompat:appcompat:1.6.1'
|
||||
implementation 'androidx.appcompat:appcompat:1.7.0'
|
||||
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
||||
implementation 'com.google.android.material:material:1.12.0'
|
||||
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
||||
@@ -94,6 +94,6 @@ dependencies {
|
||||
implementation 'com.lapism:search:2.4.1@aar'
|
||||
//noinspection GradleDependency
|
||||
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.7.0'
|
||||
implementation 'com.airbnb.android:lottie:6.4.0'
|
||||
implementation 'com.airbnb.android:lottie:6.4.1'
|
||||
implementation 'net.java.dev.jna:jna:5.14.0@aar'
|
||||
}
|
||||
|
||||
@@ -202,6 +202,7 @@ class HomeFragment : NoBackRefreshFragment(R.layout.fragment_home) {
|
||||
override fun onBindViewHolder(holder: ViewData, position: Int) {
|
||||
val thisBanner = homeHandler.index?.results?.banners?.get(position)
|
||||
thisBanner?.cover?.let {
|
||||
if(it.isEmpty()) return@let
|
||||
//Log.d("MyHomeFVP", "Load img: $it")
|
||||
Glide.with(this@HomeFragment).load(
|
||||
GlideUrl(CMApi.imageProxy?.wrap(it)?:it, CMApi.myGlideHeaders)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE resources [
|
||||
<!ENTITY hosturl "api.mangacopy.com">
|
||||
<!ENTITY appver "2.1.7">
|
||||
<!ENTITY appver "2.2.0">
|
||||
]>
|
||||
<resources>
|
||||
<string name="app_name">拷贝漫画</string>
|
||||
|
||||
Reference in New Issue
Block a user