mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2025-01-22 23:00:56 +01:00
0cbd97b5cb
This enables creating Activities outside the app and core modules
20 lines
600 B
Groovy
20 lines
600 B
Groovy
plugins {
|
|
id("com.android.library")
|
|
}
|
|
apply from: "../../common.gradle"
|
|
|
|
android {
|
|
namespace "de.danoeh.antennapod.ui.common"
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(":storage:preferences")
|
|
implementation project(":ui:i18n")
|
|
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
implementation "androidx.appcompat:appcompat:$appcompatVersion"
|
|
implementation "androidx.viewpager2:viewpager2:$viewPager2Version"
|
|
implementation "com.google.android.material:material:$googleMaterialVersion"
|
|
implementation "androidx.core:core-splashscreen:1.0.0"
|
|
}
|