peertube-live-streaming/rtsp/build.gradle
Schoumi b0dace54d7 Upgrade RTMP-RTSP from 1.8.2 (custom) to 2.1.9 (standard)
-> breaks orientation at the moment
Upgrade gradle plugin version
2022-06-16 12:34:41 +02:00

30 lines
685 B
Groovy

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'maven-publish'
android {
compileSdkVersion 32
defaultConfig {
minSdkVersion 16
targetSdkVersion 32
buildConfigField 'int', 'VERSION_CODE', "${rtsp_version_code}"
buildConfigField 'String', 'VERSION_NAME', "\"${rtsp_version_name}\""
}
buildTypes {
release {
minifyEnabled false
consumerProguardFiles 'proguard-rules.pro'
}
}
namespace 'com.pedro.rtsp'
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
testImplementation 'junit:junit:4.13.2'
testImplementation "org.mockito.kotlin:mockito-kotlin:4.0.0"
}