mirror of
https://github.com/wasabeef/glide-transformations.git
synced 2025-08-04 02:19:30 +08:00
Compare commits
No commits in common. "a0698a392f725fff29899948f1e90be6c9bfcc33" and "8144929b636e19323289a240a4d5e18949f00049" have entirely different histories.
a0698a392f
...
8144929b63
@ -5,4 +5,3 @@ insert_final_newline = true
|
|||||||
|
|
||||||
[*.{kt, kts}]
|
[*.{kt, kts}]
|
||||||
kotlin_imports_layout = ascii
|
kotlin_imports_layout = ascii
|
||||||
|
|
||||||
|
1
.idea/runConfigurations.xml
generated
1
.idea/runConfigurations.xml
generated
@ -3,7 +3,6 @@
|
|||||||
<component name="RunConfigurationProducerService">
|
<component name="RunConfigurationProducerService">
|
||||||
<option name="ignoredProducers">
|
<option name="ignoredProducers">
|
||||||
<set>
|
<set>
|
||||||
<option value="com.android.tools.idea.compose.preview.runconfiguration.ComposePreviewRunConfigurationProducer" />
|
|
||||||
<option value="org.jetbrains.plugins.gradle.execution.test.runner.AllInPackageGradleConfigurationProducer" />
|
<option value="org.jetbrains.plugins.gradle.execution.test.runner.AllInPackageGradleConfigurationProducer" />
|
||||||
<option value="org.jetbrains.plugins.gradle.execution.test.runner.TestClassGradleConfigurationProducer" />
|
<option value="org.jetbrains.plugins.gradle.execution.test.runner.TestClassGradleConfigurationProducer" />
|
||||||
<option value="org.jetbrains.plugins.gradle.execution.test.runner.TestMethodGradleConfigurationProducer" />
|
<option value="org.jetbrains.plugins.gradle.execution.test.runner.TestMethodGradleConfigurationProducer" />
|
||||||
|
@ -2,6 +2,7 @@ Glide Transformations
|
|||||||
======================
|
======================
|
||||||
[](https://android-arsenal.com/details/1/1363)
|
[](https://android-arsenal.com/details/1/1363)
|
||||||
[](https://www.apache.org/licenses/LICENSE-2.0)
|
[](https://www.apache.org/licenses/LICENSE-2.0)
|
||||||
|
[](https://bintray.com/wasabeef/maven/glide-transformations/_latestVersion)
|
||||||
|
|
||||||
An Android transformation library providing a variety of image transformations for [Glide](https://github.com/bumptech/glide).
|
An Android transformation library providing a variety of image transformations for [Glide](https://github.com/bumptech/glide).
|
||||||
|
|
||||||
@ -27,11 +28,11 @@ Please feel free to use this.
|
|||||||
#### Gradle
|
#### Gradle
|
||||||
```groovy
|
```groovy
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
jcenter()
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'jp.wasabeef:glide-transformations:4.3.0'
|
implementation 'jp.wasabeef:glide-transformations:4.x.x'
|
||||||
// If you want to use the GPU Filters
|
// If you want to use the GPU Filters
|
||||||
implementation 'jp.co.cyberagent.android:gpuimage:2.1.0'
|
implementation 'jp.co.cyberagent.android:gpuimage:2.1.0'
|
||||||
}
|
}
|
||||||
|
@ -12,19 +12,16 @@ buildscript {
|
|||||||
jcenter()
|
jcenter()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:4.2.0-beta04'
|
classpath 'com.android.tools.build:gradle:4.2.0-alpha12'
|
||||||
|
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5'
|
||||||
|
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
|
||||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||||
|
|
||||||
// TODO: Close JCenter on May 1st https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/
|
|
||||||
// classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5'
|
|
||||||
// classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
repositories {
|
repositories {
|
||||||
google()
|
google()
|
||||||
mavenCentral()
|
|
||||||
jcenter()
|
jcenter()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -29,18 +29,13 @@ android {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
|
||||||
// maven { url = "https://oss.sonatype.org/content/repositories/snapshots"}
|
|
||||||
}
|
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
// implementation project(':transformations')
|
implementation project(':transformations')
|
||||||
implementation 'jp.wasabeef:glide-transformations:4.3.0'
|
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
||||||
implementation "com.github.bumptech.glide:glide:$glide_version"
|
implementation "com.github.bumptech.glide:glide:$glide_version"
|
||||||
kapt "com.github.bumptech.glide:compiler:$glide_version"
|
kapt "com.github.bumptech.glide:compiler:$glide_version"
|
||||||
implementation "jp.co.cyberagent.android:gpuimage:$gpuimage_version"
|
implementation "jp.co.cyberagent.android:gpuimage:$gpuimage_version"
|
||||||
implementation "androidx.appcompat:appcompat:1.3.0-beta01"
|
implementation "androidx.appcompat:appcompat:1.3.0-alpha02"
|
||||||
implementation "androidx.recyclerview:recyclerview:1.2.0-beta01"
|
implementation "androidx.recyclerview:recyclerview:1.2.0-alpha05"
|
||||||
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
|
||||||
}
|
}
|
||||||
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,5 +1,5 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https://services.gradle.org/distributions/gradle-6.7.1-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-bin.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
@ -37,8 +37,5 @@ ext {
|
|||||||
allLicenses = ["Apache-2.0"]
|
allLicenses = ["Apache-2.0"]
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: Close JCenter on May 1st https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/
|
apply from: 'https://gist.githubusercontent.com/wasabeef/cf14805bee509baf7461974582f17d26/raw/bintray-v1.gradle'
|
||||||
// apply from: 'https://gist.githubusercontent.com/wasabeef/cf14805bee509baf7461974582f17d26/raw/bintray-v1.gradle'
|
apply from: 'https://gist.githubusercontent.com/wasabeef/cf14805bee509baf7461974582f17d26/raw/install-v1.gradle'
|
||||||
// apply from: 'https://gist.githubusercontent.com/wasabeef/cf14805bee509baf7461974582f17d26/raw/install-v1.gradle'
|
|
||||||
|
|
||||||
apply from: 'https://gist.githubusercontent.com/wasabeef/2f2ae8d97b429e7d967128125dc47854/raw/maven-central-v1.gradle'
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user