Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyeOfBreeze committed Sep 21, 2021
2 parents 209f0a5 + d89b2d1 commit 3fec6fc
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 17 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ android {
applicationId "tv.remo.android.controller"
minSdkVersion 16
targetSdkVersion 28
versionCode 20
versionName "0.19.2"
versionCode 21
versionName "0.19.3"
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
9 changes: 3 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.3.61'
ext.kotlin_version = '1.5.10'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
classpath 'com.android.tools.build:gradle:4.2.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

// NOTE: Do not place your application dependencies here; they belong
Expand All @@ -16,16 +16,13 @@ buildscript {
}

ext{
controlsdk_version = "0.14.0"
controlsdk_version = "v0.14.1"
}

allprojects {
repositories {
google()
jcenter()
maven {
url "https://dl.bintray.com/btelman96/maven"
}
maven { url "https://jitpack.io" }
}
}
Expand Down
6 changes: 3 additions & 3 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sat Sep 07 20:03:43 CDT 2019
#Tue Sep 21 16:40:40 CDT 2021
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.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
6 changes: 3 additions & 3 deletions sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ dependencies {
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
api "org.btelman.controlsdk:core:$controlsdk_version"
api "org.btelman.controlsdk:hardware:$controlsdk_version"
api "org.btelman.controlsdk:texttospeech:$controlsdk_version"
api "com.github.ControlSDK.ControlSDK:core:$controlsdk_version"
api "com.github.ControlSDK.ControlSDK:hardware:$controlsdk_version"
api "com.github.ControlSDK.ControlSDK:texttospeech:$controlsdk_version"
//noinspection GradleDependency. We cannot upgrade this without losing support for Android 4.4 and below
api 'com.squareup.okhttp3:okhttp:3.12.6'
api 'com.google.code.gson:gson:2.8.5'
Expand Down
6 changes: 3 additions & 3 deletions streaming/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ android {
dependencies {
api project(path: ':mobile-ffmpeg-full-4.4')
implementation fileTree(dir: 'libs', include: ['*.jar'])
api "org.btelman.ffmpeg:core:1.0.2"
api 'org.btelman.android:shellutil:1.4'
api "com.github.btelman96.ffmpeg-android:core:v1.2.0"
api 'com.github.btelman96:shellutil-android:v1.5.6'
testImplementation 'junit:junit:4.12'
implementation 'androidx.appcompat:appcompat:1.1.0' //annotations...
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'

implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
api "org.btelman.controlsdk:core:$controlsdk_version"
api "com.github.ControlSDK.ControlSDK:core:$controlsdk_version"
}
repositories {
mavenCentral()
Expand Down

0 comments on commit 3fec6fc

Please sign in to comment.