Skip to content

Commit

Permalink
build: move to maven central revanced-patcher fork
Browse files Browse the repository at this point in the history
  • Loading branch information
inotia00 committed Jul 23, 2023
1 parent 65af056 commit d37247d
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,13 @@ plugins {
kotlin("jvm") version "1.8.22"
}

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")
group = "io.github.inotia00"

repositories {
google()
mavenCentral()
mavenLocal()
maven {
url = uri("https://maven.pkg.github.com/revanced/revanced-patcher")
credentials {
username = githubUsername
password = githubPassword
}
}
maven { url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots") }
maven {
url = uri("https://repo.sleeping.town")
content {
Expand All @@ -27,7 +18,7 @@ repositories {
}

dependencies {
implementation("app.revanced:revanced-patcher:11.0.4")
implementation("io.github.inotia00:revanced-patcher:11.0.6-SNAPSHOT")
implementation("com.android.tools.smali:smali:3.0.3")
implementation("com.android.tools.smali:smali-dexlib2:3.0.3")

Expand Down

0 comments on commit d37247d

Please sign in to comment.