2021-06-22 16:05:02 +02:00
|
|
|
apply plugin: 'com.android.library'
|
2022-06-16 12:34:41 +02:00
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'maven-publish'
|
2021-06-22 16:05:02 +02:00
|
|
|
|
|
|
|
android {
|
2022-06-16 12:34:41 +02:00
|
|
|
compileSdkVersion 32
|
2021-06-22 16:05:02 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 16
|
2022-06-16 12:34:41 +02:00
|
|
|
targetSdkVersion 32
|
2021-06-22 16:05:02 +02:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
}
|
|
|
|
}
|
2022-06-16 12:34:41 +02:00
|
|
|
namespace 'com.pedro.rtmp'
|
|
|
|
|
2021-06-22 16:05:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-06-16 12:34:41 +02:00
|
|
|
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
|
|
|
}
|