You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.2 KiB
49 lines
1.2 KiB
plugins {
|
|
id 'com.android.library'
|
|
id 'kotlin-android'
|
|
id 'com.google.devtools.ksp'
|
|
id 'kotlin-parcelize'
|
|
}
|
|
|
|
android {
|
|
|
|
packagingOptions {
|
|
jniLibs {
|
|
pickFirsts += ['**/*.so']
|
|
}
|
|
}
|
|
|
|
viewBinding.enabled = true
|
|
|
|
dataBinding.enabled = true
|
|
|
|
defaultConfig {
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles 'consumer-rules.pro'
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
dev {
|
|
initWith debug
|
|
matchingFallbacks = ['debug']
|
|
}
|
|
vlcBundle {
|
|
initWith release
|
|
matchingFallbacks = ['release']
|
|
}
|
|
}
|
|
namespace = 'org.videolan.television'
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':application:vlc-android')
|
|
api project(':application:moviepedia')
|
|
testImplementation "androidx.test:core:$rootProject.ext.testCore"
|
|
androidTestImplementation "androidx.test.ext:junit:$rootProject.ext.junitExtVersion"
|
|
implementation 'com.jaredrummler:colorpicker:1.1.0'
|
|
}
|
|
|