TestPlugins/ExampleProvider/build.gradle.kts

39 lines
806 B
Plaintext
Raw Normal View History

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")
}
2022-08-08 15:05:06 +00:00
// use an integer for version numbers
2022-09-22 10:46:22 +00:00
version = -1
2022-08-08 10:13:08 +00:00
2022-08-08 15:05:06 +00:00
cloudstream {
// All of these properties are optional, you can safely remove them
2022-08-08 10:13:08 +00:00
2022-08-08 15:05:06 +00:00
description = "Lorem ipsum"
2022-08-08 15:11:56 +00:00
authors = listOf("Cloudburst")
2022-08-08 10:13:08 +00:00
2022-08-08 15:05:06 +00:00
/**
* Status int as the following:
* 0: Down
* 1: Ok
* 2: Slow
* 3: Beta only
* */
2022-08-19 09:47:07 +00:00
status = 1
2022-08-08 10:13:08 +00:00
tvTypes = listOf("NSFW")
requiresResources = true
2022-08-11 09:17:15 +00:00
language = "en"
// random cc logo i found
iconUrl = "https://upload.wikimedia.org/wikipedia/commons/2/2f/Korduene_Logo.png"
2022-08-08 15:05:06 +00:00
}
android {
buildFeatures {
viewBinding = true
}
2022-08-19 08:18:27 +00:00
}