mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-06-01 19:48:28 +01:00
21 lines
341 B
Groovy
21 lines
341 B
Groovy
apply plugin: 'expo-module-gradle-plugin'
|
|
|
|
group = 'expo.modules.backgrounddownloader'
|
|
version = '1.0.0'
|
|
|
|
expoModule {
|
|
canBePublished false
|
|
}
|
|
|
|
android {
|
|
namespace "expo.modules.backgrounddownloader"
|
|
defaultConfig {
|
|
versionCode 1
|
|
versionName "1.0.0"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation "com.squareup.okhttp3:okhttp:4.12.0"
|
|
}
|