File tree Expand file tree Collapse file tree 5 files changed +16
-11
lines changed Expand file tree Collapse file tree 5 files changed +16
-11
lines changed Original file line number Diff line number Diff line change 1
1
# GPUImage for Android
2
2
[ ![ License] ( https://img.shields.io/badge/license-Apache%202-blue.svg )] ( https://www.apache.org/licenses/LICENSE-2.0 )
3
3
[ ![ Download] ( https://api.bintray.com/packages/cats-oss/maven/gpuimage/images/download.svg ) ] ( https://bintray.com/cats-oss/maven/gpuimage/_latestVersion )
4
+ [ ![ Maven Central] ( https://maven-badges.herokuapp.com/maven-central/jp.co.cyberagent.android/gpuimage/badge.svg )] ( https://search.maven.org/artifact/jp.co.cyberagent.android/gpuimage )
4
5
[ ![ Build Status] ( https://app.bitrise.io/app/d8d8090a71066e7c/status.svg?token=sJNbvX8CkecWcUA5Z898lQ&branch=master )] ( https://app.bitrise.io/app/d8d8090a71066e7c )
5
6
6
7
Idea from: [ iOS GPUImage framework] ( https://github.com/BradLarson/GPUImage2 )
@@ -16,7 +17,7 @@ Goal is to have something as similar to GPUImage as possible. Vertex and fragmen
16
17
17
18
``` groovy
18
19
repositories {
19
- jcenter ()
20
+ mavenCentral ()
20
21
}
21
22
22
23
dependencies {
Original file line number Diff line number Diff line change @@ -7,16 +7,19 @@ buildscript {
7
7
jcenter()
8
8
}
9
9
dependencies {
10
- classpath ' com.android.tools.build:gradle:4.1.0-rc02'
11
- classpath ' com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5'
12
- classpath ' com.github.dcendents:android-maven-gradle-plugin:2.1'
10
+ classpath ' com.android.tools.build:gradle:4.2.0-beta04'
13
11
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
12
+
13
+ // TODO: Close JCenter on May 1st https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/
14
+ // classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5'
15
+ // classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
14
16
}
15
17
}
16
18
17
19
allprojects {
18
20
repositories {
19
21
google()
22
+ mavenCentral()
20
23
jcenter()
21
24
}
22
25
}
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\ ://services.gradle.org/distributions/gradle-6.6 .1-bin.zip
3
+ distributionUrl =https://services.gradle.org/distributions/gradle-6.7 .1-bin.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
- zipStorePath =wrapper/dists
5
+ zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change 49
49
allLicenses = [" Apache-2.0" ]
50
50
}
51
51
52
- apply from : ' https://gist.githubusercontent.com/wasabeef/cf14805bee509baf7461974582f17d26/raw/bintray-v1.gradle'
53
- apply from : ' https://gist.githubusercontent.com/wasabeef/cf14805bee509baf7461974582f17d26/raw/install-v1.gradle'
52
+ // TODO: Close JCenter on May 1st https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/
53
+ // apply from: 'https://gist.githubusercontent.com/wasabeef/cf14805bee509baf7461974582f17d26/raw/bintray-v1.gradle'
54
+ // apply from: 'https://gist.githubusercontent.com/wasabeef/cf14805bee509baf7461974582f17d26/raw/install-v1.gradle'
55
+
56
+ apply from : ' https://gist.githubusercontent.com/wasabeef/2f2ae8d97b429e7d967128125dc47854/raw/maven-central-v1.gradle'
Original file line number Diff line number Diff line change @@ -27,9 +27,7 @@ android {
27
27
}
28
28
}
29
29
repositories {
30
- google()
31
- jcenter()
32
- // maven { url "https://dl.bintray.com/cats-oss/maven" }
30
+ // maven { url = "https://oss.sonatype.org/content/repositories/snapshots"}
33
31
}
34
32
35
33
dependencies {
You can’t perform that action at this time.
0 commit comments