We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2982fa1 commit 3dae8ccCopy full SHA for 3dae8cc
library/build.gradle
@@ -120,14 +120,19 @@ if (deployArtifacts()) {
120
def siteUrl = 'https://github.com/wysaid/android-gpuimage-plus'
121
def gitUrl = 'https://github.com/wysaid/android-gpuimage-plus.git'
122
group = "org.wysaid"
123
- version = rootProject.ext.android.versionName
+
124
+ if (disableVideoModule()) {
125
+ version = rootProject.ext.android.versionName + '-min'
126
+ } else {
127
+ version = rootProject.ext.android.versionName
128
+ }
129
130
publishing {
131
publications {
132
release(MavenPublication) {
133
artifactId = 'gpuimage-plus'
134
groupId = 'org.wysaid'
135
+ version = version
136
137
afterEvaluate {
138
from components.release
0 commit comments