Skip to content

Commit

Permalink
解决崩溃问题
Browse files Browse the repository at this point in the history
  • Loading branch information
hss01248 committed Mar 23, 2024
1 parent fbffe65 commit 8554fac
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ android {
// Make sure libjsc.so does not packed in APK
//pickFirst '**/libc++_shared.so'
//exclude("META-INF/*.kotlin_module")
pickFirst '**/META-INF/DEPENDENCIES'
}
/*repositories {
flatDir {
Expand Down
4 changes: 2 additions & 2 deletions bigimageviewpager/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ dependencies {
api 'com.github.bumptech.glide:annotations:4.11.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0' //注解处理器
//api 'com.github.hss01248:PageStateManager:3.0.5'
api 'com.github.hss01248.utilcodeEnhance:viewState:1.3.2'
api 'com.github.hss01248.utilcodeEnhance:viewState:1.4.3'

api 'me.jessyan:progressmanager:1.5.0'
//https://github.com/JessYanCoding/ProgressManager
Expand All @@ -76,7 +76,7 @@ dependencies {
api 'androidx.lifecycle:lifecycle-common-java8:2.2.0'

api 'com.github.Jarvis-Lau:GestureViewBinder:1.0.3'
api "com.github.hss01248.utilcodeEnhance:fullScreenDialog:1.2.1"
api "com.github.hss01248.utilcodeEnhance:fullScreenDialog:1.4.3"

api('com.davemorrissey.labs:subsampling-scale-image-view:3.10.0') {
exclude group: 'com.android.support'
Expand Down
2 changes: 1 addition & 1 deletion downloader/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ android {
}

dependencies {
api "com.github.hss01248.utilcodeEnhance:lib-base:1.4.0"
api "com.github.hss01248.utilcodeEnhance:lib-base:1.4.3"
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
testImplementation 'junit:junit:4.+'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public void onMessageEvent(DownloadResultEvent info) {

String text = "("+(successCount) +",f-"+(failCount)+")/"+total+",cost:"+ DateUtils.formatElapsedTime((System.currentTimeMillis() - timeStart)/1000);
binding.tvTotalProgress.setText(text);
CommonProgressService.updateProgress(progress, (int) total,"图片下载中","图片下载: "+progress+"/"+total);
CommonProgressService.updateProgress(progress, (int) total,"图片下载中","图片下载: "+progress+"/"+total,0);
}
DownloadListViewBinding binding;
long total;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ public List<DownloadInfo> doInBackground() throws Throwable {
public void onSuccess(List<DownloadInfo> result) {
LogUtils.i("批量下载开始,更新数据库耗时(s):",(System.currentTimeMillis() - start)/1000f);
dialog.dismiss();
CommonProgressService.startS("图片下载中", "图片下载中...", new Runnable() {
CommonProgressService.startS("图片下载中", "图片下载中...", 0,new Runnable() {
@Override
public void run() {
new DownloadList().showList(ActivityUtils.getTopActivity(),result);
Expand Down
2 changes: 1 addition & 1 deletion myblog/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ dependencies {
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
api 'com.github.hss01248.utilcodeEnhance:baseWebview:1.2.1'
api 'com.github.hss01248.utilcodeEnhance:baseWebview:1.4.3'
}

configurations {
Expand Down
4 changes: 2 additions & 2 deletions webviewspider/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ dependencies {
api 'org.jsoup:jsoup:1.11.2'
api 'com.blankj:utilcodex:1.30.6'
api project(':imagelist')
api 'com.github.hss01248.utilcodeEnhance:baseWebview:1.2.1'
api 'com.github.hss01248.utilcodeEnhance:iwidget:1.2.1'
api 'com.github.hss01248.utilcodeEnhance:baseWebview:1.4.3'
api 'com.github.hss01248.utilcodeEnhance:iwidget:1.4.3'
//api project(':baseWebview')


Expand Down

0 comments on commit 8554fac

Please sign in to comment.