Skip to content

Commit

Permalink
(fix) repo name
Browse files Browse the repository at this point in the history
Signed-off-by: Androidacy Service Account <[email protected]>
  • Loading branch information
androidacy-user committed Jun 18, 2024
1 parent bc6d064 commit df39036
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--[![Build](https://github.com/LSPosed/LSParanoid/actions/workflows/build.yml/badge.svg)](https://github.com/LSPosed/LSParanoid/actions/workflows/build.yml)-->
<!--[![Build](https://github.com/Androidacy/LSParanoid/actions/workflows/build.yml/badge.svg)](https://github.com/Androidacy/LSParanoid/actions/workflows/build.yml)-->
[![](https://jitpack.io/v/Androidacy/LSParanoid.svg)](https://jitpack.io/#Androidacy/LSParanoid)

LSParanoid
Expand Down
10 changes: 5 additions & 5 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

publish {
githubRepo = "LSPosed/LSParanoid"
githubRepo = "Androidacy/LSParanoid"
publications {
register<MavenPublication>(rootProject.name) {
artifactId = project.name
Expand All @@ -15,11 +15,11 @@ publish {
pom {
name = project.name
description = "String obfuscator for Android applications"
url = "https://github.com/LSPosed/LSParanoid"
url = "https://github.com/Androidacy/LSParanoid"
licenses {
license {
name = "Apache License 2.0"
url ="https://github.com/LSPosed/LSParanoid/blob/master/LICENSE.txt"
url ="https://github.com/Androidacy/LSParanoid/blob/master/LICENSE.txt"
}
}
developers {
Expand All @@ -29,8 +29,8 @@ publish {
}
}
scm {
connection = "scm:git:https://github.com/LSPosed/LSParanoid.git"
url = "https://github.com/LSPosed/LSParanoid"
connection = "scm:git:https://github.com/Androidacy/LSParanoid.git"
url = "https://github.com/Androidacy/LSParanoid"
}
}
}
Expand Down
10 changes: 5 additions & 5 deletions gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ val genTask = tasks.register("generateBuildClass") {
outputs.dir(generatedDir)
doLast {
val buildClassFile =
File(generatedJavaSourcesDir, "org/lsposed/lsparanoid/plugin/Build.java")
File(generatedJavaSourcesDir, "org/Androidacy/LSParanoid/plugin/Build.java")
buildClassFile.parentFile.mkdirs()
buildClassFile.writeText(
"""
Expand Down Expand Up @@ -70,11 +70,11 @@ publish {
publishPlugin("$group", rootProject.name, "org.lsposed.lsparanoid.plugin.LSParanoidPlugin") {
name = rootProject.name
description = "String obfuscator for Android applications"
url = "https://github.com/LSPosed/LSParanoid"
url = "https://github.com/Androidacy/LSParanoid"
licenses {
license {
name = "Apache License 2.0"
url = "https://github.com/LSPosed/LSParanoid/blob/master/LICENSE.txt"
url = "https://github.com/Androidacy/LSParanoid/blob/master/LICENSE.txt"
}
}
developers {
Expand All @@ -84,8 +84,8 @@ publish {
}
}
scm {
connection = "scm:git:https://github.com/LSPosed/LSParanoid.git"
url = "https://github.com/LSPosed/LSParanoid"
connection = "scm:git:https://github.com/Androidacy/LSParanoid.git"
url = "https://github.com/Androidacy/LSParanoid"
}
}
}
10 changes: 5 additions & 5 deletions processor/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {
}

publish {
githubRepo = "LSPosed/LSParanoid"
githubRepo = "Androidacy/LSParanoid"
publications {
register<MavenPublication>(rootProject.name) {
artifactId = project.name
Expand All @@ -22,11 +22,11 @@ publish {
pom {
name = project.name
description = "String obfuscator for Android applications"
url = "https://github.com/LSPosed/LSParanoid"
url = "https://github.com/Androidacy/LSParanoid"
licenses {
license {
name = "Apache License 2.0"
url = "https://github.com/LSPosed/LSParanoid/blob/master/LICENSE.txt"
url = "https://github.com/Androidacy/LSParanoid/blob/master/LICENSE.txt"
}
}
developers {
Expand All @@ -36,8 +36,8 @@ publish {
}
}
scm {
connection = "scm:git:https://github.com/LSPosed/LSParanoid.git"
url = "https://github.com/LSPosed/LSParanoid"
connection = "scm:git:https://github.com/Androidacy/LSParanoid.git"
url = "https://github.com/Androidacy/LSParanoid"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ class ParanoidProcessor(

private fun createDeobfuscator(): Deobfuscator {
val deobfuscatorInternalName =
"org/lsposed/lsparanoid/Deobfuscator${composeDeobfuscatorNameSuffix()}"
"org/Androidacy/LSParanoid/Deobfuscator${composeDeobfuscatorNameSuffix()}"
val deobfuscatorType = getObjectTypeByInternalName(deobfuscatorInternalName)
val deobfuscationMethod =
Method("getString", Type.getType(String::class.java), arrayOf(Type.LONG_TYPE))
Expand Down

0 comments on commit df39036

Please sign in to comment.