peertube-live-streaming/rtsp/build.gradle

30 lines
685 B
Groovy
Raw Normal View History

2021-06-22 16:05:02 +02:00
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'maven-publish'
2021-06-22 16:05:02 +02:00
android {
compileSdkVersion 32
2021-06-22 16:05:02 +02:00
defaultConfig {
minSdkVersion 16
targetSdkVersion 32
buildConfigField 'int', 'VERSION_CODE', "${rtsp_version_code}"
buildConfigField 'String', 'VERSION_NAME', "\"${rtsp_version_name}\""
2021-06-22 16:05:02 +02:00
}
buildTypes {
release {
minifyEnabled false
consumerProguardFiles 'proguard-rules.pro'
}
}
namespace 'com.pedro.rtsp'
2021-06-22 16:05:02 +02:00
}
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"
}