mirror of
https://codeberg.org/Schoumi/PeerTubeLive.git
synced 2024-12-22 16:38:17 +01:00
b0dace54d7
-> breaks orientation at the moment Upgrade gradle plugin version
30 lines
685 B
Groovy
30 lines
685 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'maven-publish'
|
|
|
|
android {
|
|
compileSdkVersion 32
|
|
|
|
defaultConfig {
|
|
minSdkVersion 16
|
|
targetSdkVersion 32
|
|
buildConfigField 'int', 'VERSION_CODE', "${rtsp_version_code}"
|
|
buildConfigField 'String', 'VERSION_NAME', "\"${rtsp_version_name}\""
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
consumerProguardFiles 'proguard-rules.pro'
|
|
}
|
|
}
|
|
namespace 'com.pedro.rtsp'
|
|
|
|
}
|
|
|
|
|
|
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"
|
|
}
|