mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2025-12-01 12:31:45 +00:00
15 lines
260 B
Groovy
15 lines
260 B
Groovy
plugins {
|
|
id 'com.android.library'
|
|
}
|
|
apply from: "../common.gradle"
|
|
|
|
android {
|
|
namespace "de.danoeh.antennapod.system"
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(":storage:preferences")
|
|
|
|
implementation "commons-io:commons-io:$commonsioVersion"
|
|
}
|