feat(lib): Convert GoogleDriveExtractor to shared lib (#2075)

This commit is contained in:
Claudemirovsky
2023-08-23 20:22:33 -03:00
committed by GitHub
parent 9635afdfb9
commit 13f5d9ceb1
2 changed files with 120 additions and 0 deletions

View File

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