David Liu

bump version codes for build

<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
<bytecodeTargetLevel target="1.8" />
<bytecodeTargetLevel target="11" />
</component>
</project>
\ No newline at end of file
... ...
... ... @@ -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'
allprojects {
subprojects {
repositories {
google()
mavenCentral()
jcenter()
}
}
... ...
... ... @@ -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
... ...
... ... @@ -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) {
... ...
#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
... ...
... ... @@ -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"
... ...