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-30 09:57:51 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
968d6ff9c836fde687a2a2102c78d521b664b7f1
968d6ff9
1 parent
0c73a5bb
bump version codes for build
隐藏空白字符变更
内嵌
并排对比
正在显示
6 个修改的文件
包含
12 行增加
和
13 行删除
.idea/compiler.xml
build.gradle
gradle.properties
gradle/gradle-mvn-push.gradle
gradle/wrapper/gradle-wrapper.properties
sample-app/build.gradle
.idea/compiler.xml
查看文件 @
968d6ff
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"CompilerConfiguration"
>
<bytecodeTargetLevel
target=
"1
.8
"
/>
<bytecodeTargetLevel
target=
"1
1
"
/>
</component>
</project>
\ No newline at end of file
...
...
build.gradle
查看文件 @
968d6ff
...
...
@@ -11,7 +11,7 @@ buildscript {
}
dependencies
{
classpath
'com.android.tools.build:gradle:
4.1.3
'
classpath
'com.android.tools.build:gradle:
7.0.0-alpha14
'
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"
...
...
@@ -23,12 +23,11 @@ buildscript {
}
apply
plugin:
'io.codearte.nexus-staging'
all
projects
{
sub
projects
{
repositories
{
google
()
mavenCentral
()
jcenter
()
}
}
...
...
gradle.properties
查看文件 @
968d6ff
...
...
@@ -23,7 +23,7 @@ kotlin.code.style=official
###############################################################
GROUP
=
io.livekit
VERSION_NAME
=
0.6.0
VERSION_NAME
=
0.6.0
-SNAPSHOT
POM_DESCRIPTION
=
Android SDK for WebRTC communication
...
...
gradle/gradle-mvn-push.gradle
查看文件 @
968d6ff
...
...
@@ -40,11 +40,11 @@ def getSnapshotRepositoryUrl() {
}
def
getRepositoryUsername
()
{
return
hasProperty
(
'nexusUsername'
)
?
NEXUS_USERNAME
:
""
return
hasProperty
(
'nexusUsername'
)
?
nexusUsername
:
""
}
def
getRepositoryPassword
()
{
return
hasProperty
(
'nexusPassword'
)
?
NEXUS_PASSWORD
:
""
return
hasProperty
(
'nexusPassword'
)
?
nexusPassword
:
""
}
def
configurePom
(
pom
)
{
...
...
gradle/wrapper/gradle-wrapper.properties
查看文件 @
968d6ff
#
Sun Feb 21 20:04:38
JST 2021
#
Thu Apr 29 14:50:17
JST 2021
distributionBase
=
GRADLE_USER_HOME
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-7.0-rc-1-bin.zip
distributionPath
=
wrapper/dists
zipStoreBase
=
GRADLE_USER_HOME
zipStorePath
=
wrapper/dists
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-6.5-all.zip
zipStoreBase
=
GRADLE_USER_HOME
...
...
sample-app/build.gradle
查看文件 @
968d6ff
...
...
@@ -4,12 +4,12 @@ apply plugin: 'kotlin-android'
apply
plugin:
'kotlin-parcelize'
android
{
compileSdkVersion
29
buildToolsVersion
"29.0.3"
compileSdkVersion
30
buildToolsVersion
"30.0.3"
defaultConfig
{
applicationId
"io.livekit.android"
minSdkVersion
21
targetSdkVersion
29
targetSdkVersion
30
versionCode
1
versionName
"1.0"
testInstrumentationRunner
"androidx.test.runner.AndroidJUnitRunner"
...
...
请
注册
或
登录
后发表评论