This commit is contained in:
Yamozha
2021-04-02 02:24:13 +03:00
parent c23950b545
commit 7256d79e2c
31493 changed files with 3036630 additions and 0 deletions

View File

@ -0,0 +1,61 @@
apply plugin: 'com.android.library'
apply plugin: 'maven'
group = 'org.unimodules'
version = '5.4.0'
// Simple helper that allows the root project to override versions declared by this library.
def safeExtGet(prop, fallback) {
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
}
// Upload android library to maven with javadoc and android sources
configurations {
deployerJars
}
// Creating sources with comments
task androidSourcesJar(type: Jar) {
classifier = 'sources'
from android.sourceSets.main.java.srcDirs
}
// Put the androidSources and javadoc to the artifacts
artifacts {
archives androidSourcesJar
}
uploadArchives {
repositories {
mavenDeployer {
configuration = configurations.deployerJars
repository(url: mavenLocal().url)
}
}
}
android {
compileSdkVersion safeExtGet("compileSdkVersion", 29)
defaultConfig {
minSdkVersion safeExtGet("minSdkVersion", 21)
targetSdkVersion safeExtGet("targetSdkVersion", 29)
versionCode 15
versionName "5.4.0"
}
lintOptions {
abortOnError false
}
}
if (new File(rootProject.projectDir.parentFile, 'package.json').exists()) {
apply from: project(":unimodules-core").file("../unimodules-core.gradle")
} else {
throw new GradleException(
"'unimodules-core.gradle' was not found in the usual React Native dependency location. " +
"This package can only be used in such projects. Are you sure you've installed the dependencies properly?")
}
dependencies {
api "androidx.annotation:annotation:1.0.0"
}

View File

@ -0,0 +1,5 @@
<manifest package="org.unimodules.interfaces.imageloader">
</manifest>

View File

@ -0,0 +1,36 @@
package org.unimodules.interfaces.imageloader;
import android.graphics.Bitmap;
import java.util.concurrent.Future;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
public interface ImageLoader {
interface ResultListener {
void onSuccess(@NonNull Bitmap bitmap);
void onFailure(@Nullable Throwable cause);
}
/**
* Loads image into memory that might be cached and downsampled if necessary.
*/
Future<Bitmap> loadImageForDisplayFromURL(@NonNull String url);
/**
* Loads image into memory that might be cached and downsampled if necessary.
*/
void loadImageForDisplayFromURL(@NonNull String url, ResultListener resultListener);
/**
* Loads full-sized image with no caching.
*/
Future<Bitmap> loadImageForManipulationFromURL(@NonNull String url);
/**
* Loads full-sized image with no caching.
*/
void loadImageForManipulationFromURL(@NonNull String url, ResultListener resultListener);
}