Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
xuning
/
livekitAndroidXuningTest
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
David Liu
2021-04-28 22:23:32 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d7c32662f9f1000bcf4e9849877ae78fc7068bb1
d7c32662
1 parent
7c3d1194
add in base maven push gradle stuff
隐藏空白字符变更
内嵌
并排对比
正在显示
6 个修改的文件
包含
205 行增加
和
15 行删除
build.gradle
gradle.properties
gradle/gradle-mvn-push.gradle
livekit-android-sdk/build.gradle
livekit-android-sdk/gradle.properties
livekit-android-sdk/src/main/java/io/livekit/android/Version.kt
build.gradle
查看文件 @
d7c3266
...
...
@@ -14,6 +14,7 @@ buildscript {
classpath
'com.android.tools.build:gradle:4.1.3'
classpath
"org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath
"org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
classpath
"org.jetbrains.dokka:dokka-gradle-plugin:$dokka_version"
classpath
'com.google.protobuf:protobuf-gradle-plugin:0.8.15'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
...
...
gradle.properties
查看文件 @
d7c3266
...
...
@@ -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://git@github.com/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/
\ No newline at end of file
...
...
gradle/gradle-mvn-push.gradle
0 → 100644
查看文件 @
d7c3266
/*
* 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
}
}
}
\ No newline at end of file
...
...
livekit-android-sdk/build.gradle
查看文件 @
d7c3266
apply
plugin:
'com.android.library'
apply
plugin:
'kotlin-android'
apply
plugin:
'kotlin-kapt'
apply
plugin:
'kotlinx-serialization'
apply
plugin:
'com.google.protobuf'
apply
plugin:
'org.jetbrains.dokka'
plugins
{
id
"org.jetbrains.dokka"
id
'com.android.library'
id
'kotlin-android'
id
'kotlin-kapt'
id
'kotlinx-serialization'
id
'com.google.protobuf'
id
'com.bmuschko.nexus'
}
android
{
compileSdkVersion
29
buildToolsVersion
"29.0.3"
compileSdkVersion
30
buildToolsVersion
"30.0.3"
defaultConfig
{
minSdkVersion
21
targetSdkVersion
29
targetSdkVersion
30
versionCode
1
versionName
"1.0"
versionName
VERSION_NAME
testInstrumentationRunner
"androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles
'consumer-rules.pro'
buildConfigField
"String"
,
"VERSION_NAME"
,
"\"$VERSION_NAME\""
}
buildTypes
{
...
...
@@ -90,7 +95,7 @@ dokkaHtml {
dependencies
{
implementation
fileTree
(
dir:
'libs'
,
include:
[
'*.jar'
])
implementation
"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation
'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.
2
'
implementation
'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.
3
'
implementation
'org.jetbrains.kotlinx:kotlinx-serialization-json:1.1.0'
api
'org.webrtc:google-webrtc:1.0.32006'
api
"com.squareup.okhttp3:okhttp:4.9.0"
...
...
@@ -109,3 +114,5 @@ dependencies {
androidTestImplementation
'androidx.test.ext:junit:1.1.2'
androidTestImplementation
'androidx.test.espresso:espresso-core:3.3.0'
}
apply
from:
rootProject
.
file
(
'gradle/gradle-mvn-push.gradle'
)
\ No newline at end of file
...
...
livekit-android-sdk/gradle.properties
0 → 100644
查看文件 @
d7c3266
POM_NAME
=
LiveKit Client Android SDK
POM_ARTIFACT_ID
=
livekit-android-sdk
POM_PACKAGING
=
aar
\ No newline at end of file
...
...
livekit-android-sdk/src/main/java/io/livekit/android/Version.kt
查看文件 @
d7c3266
package io.livekit.android
class Version {
companion object {
const val CLIENT_VERSION = "0.5.1"
}
object Version {
const val CLIENT_VERSION = BuildConfig.VERSION_NAME
}
\ No newline at end of file
...
...
请
注册
或
登录
后发表评论