Skip to content

Commit

Permalink
处理代码迁移
Browse files Browse the repository at this point in the history
  • Loading branch information
hss01248 committed Sep 5, 2024
1 parent 62943a6 commit 6ef623e
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 114 deletions.
7 changes: 5 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ android {


dependencies {
implementation project(path: ':downloader')
//implementation project(path: ':downloader')
implementation project(path: ':downloader-m3u8')
implementation project(path: ':fileOperation')
api fileTree(include: ['*.jar'], dir: 'libs')
Expand All @@ -59,6 +59,7 @@ dependencies {
//compile project(':memory')
api project(':imagelist')
api project(':imagelist')
api project(':compressor')
//compile project(':picasso')
api project(':glidev4')

Expand Down Expand Up @@ -87,7 +88,7 @@ dependencies {

api 'org.raphets:roundimageview:1.2.0'
api('com.github.skyNet2017.Luban:dataForPhotoSelet:3.3.0')
api project(path: ':webviewspider')
//api project(path: ':webviewspider')
// api project(path: ':spiders')
api 'com.github.getActivity:XXPermissions:11.6'//请求存储权限
debugImplementation 'com.glance.guolindev:glance:1.0.0'
Expand All @@ -100,6 +101,8 @@ dependencies {
resolutionStrategy.force 'com.squareup.okio:okio:1.15.0'
resolutionStrategy.force 'com.github.bumptech.glide:glide:4.11.0'
}
api "com.github.hss01248.utilcodeEnhance:downloader:${utilcodeVersion}"
api "com.github.hss01248.utilcodeEnhance:webviewspider:${utilcodeVersion}"
api "com.github.hss01248.utilcodeEnhance:bitmap-saver:${utilcodeVersion}"
api "com.github.hss01248.utilcodeEnhance:viewholder-media:${utilcodeVersion}"
api('com.davemorrissey.labs:subsampling-scale-image-view:3.10.0') {
Expand Down
2 changes: 1 addition & 1 deletion bigimgdemo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies {
implementation 'androidx.constraintlayout:constraintlayout:2.1.0'
implementation project(path: ':bigimageviewpager')
implementation project(path: ':imagelist')
implementation project(path: ':webviewspider')
api "com.github.hss01248.utilcodeEnhance:webviewspider:${utilcodeVersion}"
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ buildscript {
snapshotUrl='https://nexus.hss01248.tech/repository/maven-snapshots/'
publicUrl='https://nexus.hss01248.tech/#browse/browse:maven-public:'

utilcodeVersion='1.6.4'
utilcodeVersion='1.6.5'


}
Expand Down
2 changes: 1 addition & 1 deletion downloader-m3u8/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies {
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
api project(path: ':downloader')
api "com.github.hss01248.utilcodeEnhance:downloader:${utilcodeVersion}"
api 'io.lindstrom:m3u8-parser:0.27'
implementation 'com.liulishuo.filedownloader:library:1.7.7'
}
2 changes: 1 addition & 1 deletion downloader-m3u8/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.hss01248.downloader_m3u8">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="29"/>

<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"/>

</manifest>
5 changes: 3 additions & 2 deletions imagelist/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies {
//api 'com.github.hss01248.ImageLoader:glidev4:3.2.3'
//api 'com.github.hss01248.ImageLoader:bigimageviewpager:3.2.3'
api project(':glidev4')
api project(':downloader')
//api "com.github.hss01248.utilcodeEnhance:downloader:${utilcodeVersion}"
//api project(':bigimageviewpager')
implementation 'androidx.appcompat:appcompat:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.0.0'
Expand All @@ -46,8 +46,9 @@ dependencies {
api 'com.github.fondesa:recycler-view-divider:3.5.0'
//implementation 'com.yqritc:recyclerview-flexibledivider:1.4.0'

api 'com.github.hss01248:UI:0.0.1'
//api 'com.github.hss01248:UI:0.0.1'
api "com.github.hss01248.utilcodeEnhance:iwidget:${utilcodeVersion}"
api "com.github.hss01248.utilcodeEnhance:downloader:${utilcodeVersion}"
api 'com.github.hss01248:DialogUtil:3.0.5'
api "com.github.hss01248.utilcodeEnhance:fullScreenDialog:${utilcodeVersion}"
api "com.github.hss01248.utilcodeEnhance:viewholder:${utilcodeVersion}"
Expand Down
103 changes: 0 additions & 103 deletions imagelist/src/main/java/com/hss01248/imagelist/GlideDownloadImpl.java

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
import com.hss01248.img.compressor.ImageDirCompressor;
import com.hss01248.img.compressor.UiForDirCompress;
import com.hss01248.iwidget.singlechoose.ISingleChooseItem;
import com.hss01248.ui.pop.list.PopList;

import org.apache.commons.io.FileUtils;

Expand Down
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ include ':MediaStoreApi'
include ':avif'
include ':compressor'
include ':xxspiders'
include ':downloader'
//include ':downloader'
include ':spiders'
include ':imageDebugger'
include ':webviewspider'
//include ':webviewspider'
include ':bigimgdemo'
include ':bigimageviewpager'//include ':bigimage'
include ':app', ':imageloader', ':glidev4', ':glidebase', ':imagelist'
Expand Down

0 comments on commit 6ef623e

Please sign in to comment.