mirror of
https://codeberg.org/Schoumi/PeerTubeLive.git
synced 2025-01-05 15:27:16 +01:00
23 lines
344 B
Groovy
23 lines
344 B
Groovy
|
apply plugin: 'com.android.library'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 30
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion 16
|
||
|
targetSdkVersion 30
|
||
|
}
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
consumerProguardFiles 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
api project(':encoder')
|
||
|
api project(':rtmp')
|
||
|
api project(':rtsp')
|
||
|
}
|