mirror of
https://codeberg.org/Schoumi/PeerTubeLive.git
synced 2025-01-15 12:06:02 +01:00
b0dace54d7
-> breaks orientation at the moment Upgrade gradle plugin version
26 lines
509 B
Groovy
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'
|
|
}
|