Skip to content

Commit

Permalink
1.1.2 test with bumblebee
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreyliu8 committed Feb 6, 2022
1 parent 2487c21 commit 770b811
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.4'
classpath 'com.android.tools.build:gradle:7.1.1'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
42 changes: 21 additions & 21 deletions floydsteinbergdithering/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,31 +29,31 @@ android {
path "CMakeLists.txt"
}
}
}

// Because the components are created only during the afterEvaluate phase, you must
// Because the components are created only during the afterEvaluate phase, you must
// configure your publications using the afterEvaluate() lifecycle method.
afterEvaluate {
publishing {
publications {
// Creates a Maven publication called "release".
release(MavenPublication) {
// Applies the component for the release build variant.
from components.release
afterEvaluate {
publishing {
publications {
// Creates a Maven publication called "release".
release(MavenPublication) {
// Applies the component for the release build variant.
from components.release

// You can then customize attributes of the publication as shown below.
groupId = 'com.github.jeffreyliu8'
artifactId = 'final'
version = '1.1.1'
}
// Creates a Maven publication called “debug”.
debug(MavenPublication) {
// Applies the component for the debug build variant.
from components.debug
// You can then customize attributes of the publication as shown below.
groupId = 'com.github.jeffreyliu8'
artifactId = 'final'
version = '1.1.2'
}
// Creates a Maven publication called “debug”.
debug(MavenPublication) {
// Applies the component for the debug build variant.
from components.debug

groupId = 'com.github.jeffreyliu8'
artifactId = 'final-debug'
version = '1.1.1'
}
groupId = 'com.github.jeffreyliu8'
artifactId = 'final-debug'
version = '1.1.2'
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-all.zip

0 comments on commit 770b811

Please sign in to comment.