peertube-live-streaming/rtmp/build.gradle

26 lines
509 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
2021-06-22 16:05:02 +02:00
}
buildTypes {
release {
minifyEnabled false
}
}
namespace 'com.pedro.rtmp'
2021-06-22 16:05:02 +02:00
}
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'
2021-06-22 16:05:02 +02:00
}