peertube-live-streaming/rtmp/build.gradle

26 lines
509 B
Groovy

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'maven-publish'
android {
compileSdkVersion 32
defaultConfig {
minSdkVersion 16
targetSdkVersion 32
}
buildTypes {
release {
minifyEnabled false
}
}
namespace 'com.pedro.rtmp'
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
testImplementation 'junit:junit:4.13.2'
}