mirror of
https://codeberg.org/Schoumi/PeerTubeLive.git
synced 2025-01-05 07:17:40 +01:00
21 lines
317 B
Groovy
21 lines
317 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 'androidx.annotation:annotation:1.2.0'
|
||
|
}
|