mirror of
https://github.com/revanced/revanced-patches
synced 2024-11-10 08:59:22 +01:00
22 lines
546 B
Plaintext
22 lines
546 B
Plaintext
plugins {
|
|
kotlin("jvm") version "1.7.0"
|
|
}
|
|
|
|
group = "app.revanced"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url = uri("https://maven.pkg.github.com/revanced/revanced-patcher")
|
|
credentials {
|
|
username = project.findProperty("gpr.user") as? String ?: System.getenv("GITHUB_ACTOR")
|
|
password = project.findProperty("gpr.key") as? String ?: System.getenv("GITHUB_TOKEN")
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(kotlin("stdlib"))
|
|
|
|
implementation("app.revanced:revanced-patcher:1.1.0")
|
|
} |