feat(lib): Add new lib for playlists and implement it for KAA (#1918)

This commit is contained in:
Secozzi
2023-07-17 16:45:58 +00:00
committed by GitHub
parent c78615c1f1
commit fa1aa310f1
5 changed files with 346 additions and 85 deletions

View File

@ -0,0 +1,18 @@
plugins {
id("com.android.library")
kotlin("android")
}
android {
compileSdk = AndroidConfig.compileSdk
namespace = "eu.kanade.tachiyomi.lib.playlistutils"
defaultConfig {
minSdk = AndroidConfig.minSdk
}
}
dependencies {
compileOnly(libs.bundles.common)
}