plugins { kotlin("jvm") version "1.7.0" } group = "app.revanced" val githubUsername: String = project.findProperty("gpr.user") as? String ?: System.getenv("GITHUB_ACTOR") val githubPassword: String = project.findProperty("gpr.key") as? String ?: System.getenv("GITHUB_TOKEN") repositories { mavenCentral() maven { url = uri("https://maven.pkg.github.com/revanced/revanced-patcher") credentials { username = githubUsername password = githubPassword } } } dependencies { implementation("org.jetbrains.kotlin:kotlin-stdlib:1.7.0") implementation("app.revanced:revanced-patcher:1.1.0") }