Initial commit

This commit is contained in:
2025-05-13 19:24:51 +02:00
commit a950f49678
10604 changed files with 932663 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package com.bumptech.glide.load.resource.file;
import com.bumptech.glide.load.Options;
import com.bumptech.glide.load.ResourceDecoder;
import com.bumptech.glide.load.engine.Resource;
import java.io.File;
/* loaded from: classes.dex */
public class FileDecoder implements ResourceDecoder<File, File> {
@Override // com.bumptech.glide.load.ResourceDecoder
public boolean a(File file, Options options) {
return true;
}
@Override // com.bumptech.glide.load.ResourceDecoder
public Resource<File> a(File file, int i, int i2, Options options) {
return new FileResource(file);
}
}

View File

@@ -0,0 +1,11 @@
package com.bumptech.glide.load.resource.file;
import com.bumptech.glide.load.resource.SimpleResource;
import java.io.File;
/* loaded from: classes.dex */
public class FileResource extends SimpleResource<File> {
public FileResource(File file) {
super(file);
}
}