forked from livekit/client-sdk-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
205 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,3 +19,25 @@ android.useAndroidX=true | |
android.enableJetifier=true | ||
# Kotlin code style for this project: "official" or "obsolete": | ||
kotlin.code.style=official | ||
|
||
############################################################### | ||
|
||
GROUP=io.livekit | ||
VERSION_NAME=0.5.1-SNAPSHOT | ||
|
||
POM_DESCRIPTION=Android SDK for WebRTC communication | ||
|
||
POM_URL=https://github.com/livekit/client-sdk-android | ||
POM_SCM_URL=https://github.com/livekit/client-sdk-android | ||
POM_SCM_CONNECTION=scm:git:git://github.com/livekit/client-sdk-android.git | ||
POM_SCM_DEV_CONNECTION=scm:git:ssh://[email protected]/livekit/client-sdk-android.git | ||
|
||
POM_LICENCE_NAME= | ||
POM_LICENCE_URL= | ||
POM_LICENCE_DIST=repo | ||
|
||
POM_DEVELOPER_ID=livekit | ||
POM_DEVELOPER_NAME=LiveKit | ||
|
||
RELEASE_REPOSITORY_URL=https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ | ||
SNAPSHOT_REPOSITORY_URL=https://s01.oss.sonatype.org/content/repositories/snapshots/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,159 @@ | ||
/* | ||
* Copyright 2013 Chris Banes | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/* | ||
* This file is from: | ||
* https://github.com/chrisbanes/gradle-mvn-push/blob/master/gradle-mvn-push.gradle | ||
*/ | ||
|
||
apply plugin: 'maven-publish' | ||
apply plugin: 'signing' | ||
|
||
version = VERSION_NAME | ||
group = GROUP | ||
|
||
def isReleaseBuild() { | ||
return VERSION_NAME.contains("SNAPSHOT") == false | ||
} | ||
|
||
def getReleaseRepositoryUrl() { | ||
return hasProperty('RELEASE_REPOSITORY_URL') ? RELEASE_REPOSITORY_URL | ||
: "https://oss.sonatype.org/service/local/staging/deploy/maven2/" | ||
} | ||
|
||
def getSnapshotRepositoryUrl() { | ||
return hasProperty('SNAPSHOT_REPOSITORY_URL') ? SNAPSHOT_REPOSITORY_URL | ||
: "https://oss.sonatype.org/content/repositories/snapshots/" | ||
} | ||
|
||
def getRepositoryUsername() { | ||
return hasProperty('NEXUS_USERNAME') ? NEXUS_USERNAME : "" | ||
} | ||
|
||
def getRepositoryPassword() { | ||
return hasProperty('NEXUS_PASSWORD') ? NEXUS_PASSWORD : "" | ||
} | ||
|
||
def configurePom(pom) { | ||
pom.name = POM_NAME | ||
pom.packaging = POM_PACKAGING | ||
pom.description = POM_DESCRIPTION | ||
pom.url = POM_URL | ||
|
||
pom.scm { | ||
url = POM_SCM_URL | ||
connection = POM_SCM_CONNECTION | ||
developerConnection = POM_SCM_DEV_CONNECTION | ||
} | ||
|
||
pom.licenses { | ||
license { | ||
name = POM_LICENCE_NAME | ||
url = POM_LICENCE_URL | ||
distribution = POM_LICENCE_DIST | ||
} | ||
} | ||
|
||
pom.developers { | ||
developer { | ||
id = POM_DEVELOPER_ID | ||
name = POM_DEVELOPER_NAME | ||
} | ||
} | ||
} | ||
|
||
afterEvaluate { project -> | ||
publishing { | ||
repositories { | ||
maven { | ||
def releasesRepoUrl = getReleaseRepositoryUrl() | ||
def snapshotsRepoUrl = getSnapshotRepositoryUrl() | ||
url = isReleaseBuild() ? releasesRepoUrl : snapshotsRepoUrl | ||
|
||
credentials(PasswordCredentials) { | ||
username = getRepositoryUsername() | ||
password = getRepositoryPassword() | ||
} | ||
} | ||
} | ||
} | ||
|
||
if (project.getPlugins().hasPlugin('com.android.application') || | ||
project.getPlugins().hasPlugin('com.android.library')) { | ||
|
||
task androidJavadocs(type: Javadoc) { | ||
source = android.sourceSets.main.java.source | ||
classpath += project.files(android.getBootClasspath().join(File.pathSeparator)) | ||
excludes = ['**/*.kt'] | ||
} | ||
|
||
task androidJavadocsJar(type: Jar, dependsOn: androidJavadocs) { | ||
classifier = 'javadoc' | ||
from androidJavadocs.destinationDir | ||
} | ||
|
||
task androidSourcesJar(type: Jar) { | ||
classifier = 'sources' | ||
from android.sourceSets.main.java.source | ||
} | ||
} | ||
|
||
if (JavaVersion.current().isJava8Compatible()) { | ||
allprojects { | ||
tasks.withType(Javadoc) { | ||
options.addStringOption('Xdoclint:none', '-quiet') | ||
} | ||
} | ||
} | ||
|
||
if (JavaVersion.current().isJava9Compatible()) { | ||
allprojects { | ||
tasks.withType(Javadoc) { | ||
options.addBooleanOption('html5', true) | ||
} | ||
} | ||
} | ||
|
||
artifacts { | ||
if (project.getPlugins().hasPlugin('com.android.application') || | ||
project.getPlugins().hasPlugin('com.android.library')) { | ||
archives androidSourcesJar | ||
archives androidJavadocsJar | ||
} | ||
} | ||
|
||
android.libraryVariants.all { variant -> | ||
tasks.androidJavadocs.doFirst { | ||
classpath += files(variant.javaCompileProvider.get().classpath.files.join(File.pathSeparator)) | ||
} | ||
} | ||
|
||
publishing.publications.all { publication -> | ||
publication.groupId = GROUP | ||
publication.version = VERSION_NAME | ||
|
||
publication.artifact androidSourcesJar | ||
publication.artifact androidJavadocsJar | ||
|
||
configurePom(publication.pom) | ||
} | ||
|
||
signing { | ||
publishing.publications.all { publication -> | ||
sign publication | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
POM_NAME=LiveKit Client Android SDK | ||
POM_ARTIFACT_ID=livekit-android-sdk | ||
POM_PACKAGING=aar |
6 changes: 2 additions & 4 deletions
6
livekit-android-sdk/src/main/java/io/livekit/android/Version.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
package io.livekit.android | ||
|
||
class Version { | ||
companion object { | ||
const val CLIENT_VERSION = "0.5.1" | ||
} | ||
object Version { | ||
const val CLIENT_VERSION = BuildConfig.VERSION_NAME | ||
} |