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.
40 lines
1.5 KiB
40 lines
1.5 KiB
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
|
|
defaultConfig {
|
|
minSdkVersion rootProject.ext.minSdkVersion
|
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
|
compileSdk rootProject.ext.compileSdkVersion
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
namespace 'videolan.org.commontools'
|
|
buildFeatures {
|
|
buildConfig true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api "androidx.appcompat:appcompat:$rootProject.ext.appCompatVersion"
|
|
implementation "androidx.lifecycle:lifecycle-process:$rootProject.ext.lifecycleVersion"
|
|
implementation "androidx.preference:preference-ktx:$androidxPreferencesVersion"
|
|
api "androidx.tvprovider:tvprovider:$rootProject.ext.androidxLeanbackVersion"
|
|
implementation("com.squareup.okhttp3:logging-interceptor:4.2.1")
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$rootProject.ext.kotlinx_version"
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$rootProject.ext.kotlinx_version"
|
|
implementation "androidx.core:core-ktx:$rootProject.ext.androidxCoreVersion"
|
|
|
|
testImplementation "junit:junit:$rootProject.ext.junitVersion"
|
|
androidTestImplementation "androidx.test:runner:$rootProject.ext.testRunner"
|
|
androidTestImplementation "androidx.test.espresso:espresso-core:$rootProject.espressoVersion"
|
|
}
|
|
|