Skip to content

Commit 6ef623e

Browse files
committed
处理代码迁移
1 parent 62943a6 commit 6ef623e

File tree

9 files changed

+14
-114
lines changed

9 files changed

+14
-114
lines changed

app/build.gradle

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ android {
4141

4242

4343
dependencies {
44-
implementation project(path: ':downloader')
44+
//implementation project(path: ':downloader')
4545
implementation project(path: ':downloader-m3u8')
4646
implementation project(path: ':fileOperation')
4747
api fileTree(include: ['*.jar'], dir: 'libs')
@@ -59,6 +59,7 @@ dependencies {
5959
//compile project(':memory')
6060
api project(':imagelist')
6161
api project(':imagelist')
62+
api project(':compressor')
6263
//compile project(':picasso')
6364
api project(':glidev4')
6465

@@ -87,7 +88,7 @@ dependencies {
8788

8889
api 'org.raphets:roundimageview:1.2.0'
8990
api('com.github.skyNet2017.Luban:dataForPhotoSelet:3.3.0')
90-
api project(path: ':webviewspider')
91+
//api project(path: ':webviewspider')
9192
// api project(path: ':spiders')
9293
api 'com.github.getActivity:XXPermissions:11.6'//请求存储权限
9394
debugImplementation 'com.glance.guolindev:glance:1.0.0'
@@ -100,6 +101,8 @@ dependencies {
100101
resolutionStrategy.force 'com.squareup.okio:okio:1.15.0'
101102
resolutionStrategy.force 'com.github.bumptech.glide:glide:4.11.0'
102103
}
104+
api "com.github.hss01248.utilcodeEnhance:downloader:${utilcodeVersion}"
105+
api "com.github.hss01248.utilcodeEnhance:webviewspider:${utilcodeVersion}"
103106
api "com.github.hss01248.utilcodeEnhance:bitmap-saver:${utilcodeVersion}"
104107
api "com.github.hss01248.utilcodeEnhance:viewholder-media:${utilcodeVersion}"
105108
api('com.davemorrissey.labs:subsampling-scale-image-view:3.10.0') {

bigimgdemo/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ dependencies {
3838
implementation 'androidx.constraintlayout:constraintlayout:2.1.0'
3939
implementation project(path: ':bigimageviewpager')
4040
implementation project(path: ':imagelist')
41-
implementation project(path: ':webviewspider')
41+
api "com.github.hss01248.utilcodeEnhance:webviewspider:${utilcodeVersion}"
4242
testImplementation 'junit:junit:4.+'
4343
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
4444
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ buildscript {
2222
snapshotUrl='https://nexus.hss01248.tech/repository/maven-snapshots/'
2323
publicUrl='https://nexus.hss01248.tech/#browse/browse:maven-public:'
2424

25-
utilcodeVersion='1.6.4'
25+
utilcodeVersion='1.6.5'
2626

2727

2828
}

downloader-m3u8/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ dependencies {
3232
testImplementation 'junit:junit:4.13.2'
3333
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
3434
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
35-
api project(path: ':downloader')
35+
api "com.github.hss01248.utilcodeEnhance:downloader:${utilcodeVersion}"
3636
api 'io.lindstrom:m3u8-parser:0.27'
3737
implementation 'com.liulishuo.filedownloader:library:1.7.7'
3838
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.hss01248.downloader_m3u8">
3-
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="29"/>
3+
44
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"/>
55

66
</manifest>

imagelist/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dependencies {
3131
//api 'com.github.hss01248.ImageLoader:glidev4:3.2.3'
3232
//api 'com.github.hss01248.ImageLoader:bigimageviewpager:3.2.3'
3333
api project(':glidev4')
34-
api project(':downloader')
34+
//api "com.github.hss01248.utilcodeEnhance:downloader:${utilcodeVersion}"
3535
//api project(':bigimageviewpager')
3636
implementation 'androidx.appcompat:appcompat:1.0.0'
3737
implementation 'androidx.recyclerview:recyclerview:1.0.0'
@@ -46,8 +46,9 @@ dependencies {
4646
api 'com.github.fondesa:recycler-view-divider:3.5.0'
4747
//implementation 'com.yqritc:recyclerview-flexibledivider:1.4.0'
4848

49-
api 'com.github.hss01248:UI:0.0.1'
49+
//api 'com.github.hss01248:UI:0.0.1'
5050
api "com.github.hss01248.utilcodeEnhance:iwidget:${utilcodeVersion}"
51+
api "com.github.hss01248.utilcodeEnhance:downloader:${utilcodeVersion}"
5152
api 'com.github.hss01248:DialogUtil:3.0.5'
5253
api "com.github.hss01248.utilcodeEnhance:fullScreenDialog:${utilcodeVersion}"
5354
api "com.github.hss01248.utilcodeEnhance:viewholder:${utilcodeVersion}"

imagelist/src/main/java/com/hss01248/imagelist/GlideDownloadImpl.java

Lines changed: 0 additions & 103 deletions
This file was deleted.

imagelist/src/main/java/com/hss01248/imagelist/album/ImageListView.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
import com.hss01248.img.compressor.ImageDirCompressor;
4242
import com.hss01248.img.compressor.UiForDirCompress;
4343
import com.hss01248.iwidget.singlechoose.ISingleChooseItem;
44-
import com.hss01248.ui.pop.list.PopList;
4544

4645
import org.apache.commons.io.FileUtils;
4746

settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ include ':MediaStoreApi'
66
include ':avif'
77
include ':compressor'
88
include ':xxspiders'
9-
include ':downloader'
9+
//include ':downloader'
1010
include ':spiders'
1111
include ':imageDebugger'
12-
include ':webviewspider'
12+
//include ':webviewspider'
1313
include ':bigimgdemo'
1414
include ':bigimageviewpager'//include ':bigimage'
1515
include ':app', ':imageloader', ':glidev4', ':glidebase', ':imagelist'

0 commit comments

Comments
 (0)