TestPlugins/ExampleProvider/build.gradle.kts

39 lines
806 B
Kotlin

dependencies {
implementation("androidx.legacy:legacy-support-v4:1.0.0")
implementation("com.google.android.material:material:1.4.0")
implementation("androidx.recyclerview:recyclerview:1.2.1")
}
// use an integer for version numbers
version = -1
cloudstream {
// All of these properties are optional, you can safely remove them
description = "Lorem ipsum"
authors = listOf("Cloudburst")
/**
* Status int as the following:
* 0: Down
* 1: Ok
* 2: Slow
* 3: Beta only
* */
status = 1
tvTypes = listOf("NSFW")
requiresResources = true
language = "en"
// random cc logo i found
iconUrl = "https://upload.wikimedia.org/wikipedia/commons/2/2f/Korduene_Logo.png"
}
android {
buildFeatures {
viewBinding = true
}
}