feat: microg-patch
This commit is contained in:
parent
763f78a549
commit
48bbd574a5
|
@ -27,9 +27,9 @@ internal fun String.startsWithAny(vararg prefix: String): Boolean {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
internal fun String.containsAny(vararg others: String): Boolean {
|
internal fun String.equalsAny(vararg other: String): Boolean {
|
||||||
for (other in others)
|
for (_other in other)
|
||||||
if (this.contains(other))
|
if (this == _other)
|
||||||
return true
|
return true
|
||||||
|
|
||||||
return false
|
return false
|
||||||
|
|
|
@ -5,7 +5,7 @@ import app.revanced.patcher.annotation.Package
|
||||||
|
|
||||||
@Compatibility(
|
@Compatibility(
|
||||||
[Package(
|
[Package(
|
||||||
"com.google.android.youtube", arrayOf("17.14.35", "17.19.36")
|
"com.google.android.youtube", arrayOf("17.14.35", "17.19.36", "17.20.37")
|
||||||
)]
|
)]
|
||||||
)
|
)
|
||||||
@Target(AnnotationTarget.CLASS)
|
@Target(AnnotationTarget.CLASS)
|
||||||
|
|
|
@ -1,24 +1,22 @@
|
||||||
package app.revanced.patches.youtube.misc.microg.patch.bytecode
|
package app.revanced.patches.youtube.misc.microg.patch.bytecode
|
||||||
|
|
||||||
import app.revanced.extensions.containsAny
|
import app.revanced.extensions.equalsAny
|
||||||
import app.revanced.extensions.startsWithAny
|
|
||||||
import app.revanced.patcher.annotation.Description
|
import app.revanced.patcher.annotation.Description
|
||||||
import app.revanced.patcher.annotation.Name
|
import app.revanced.patcher.annotation.Name
|
||||||
import app.revanced.patcher.annotation.Version
|
import app.revanced.patcher.annotation.Version
|
||||||
import app.revanced.patcher.data.implementation.BytecodeData
|
import app.revanced.patcher.data.implementation.BytecodeData
|
||||||
import app.revanced.patcher.data.implementation.proxy
|
import app.revanced.patcher.data.implementation.proxy
|
||||||
import app.revanced.patcher.extensions.addInstructions
|
import app.revanced.patcher.extensions.addInstructions
|
||||||
import app.revanced.patcher.extensions.or
|
import app.revanced.patcher.patch.annotations.Dependencies
|
||||||
|
import app.revanced.patcher.patch.annotations.Patch
|
||||||
import app.revanced.patcher.patch.implementation.BytecodePatch
|
import app.revanced.patcher.patch.implementation.BytecodePatch
|
||||||
import app.revanced.patcher.patch.implementation.misc.PatchResult
|
import app.revanced.patcher.patch.implementation.misc.PatchResult
|
||||||
import app.revanced.patcher.patch.implementation.misc.PatchResultSuccess
|
import app.revanced.patcher.patch.implementation.misc.PatchResultSuccess
|
||||||
import app.revanced.patcher.signature.implementation.method.MethodSignature
|
|
||||||
import app.revanced.patcher.signature.implementation.method.annotation.DirectPatternScanMethod
|
|
||||||
import app.revanced.patcher.signature.implementation.method.annotation.MatchingMethod
|
|
||||||
import app.revanced.patcher.util.proxy.mutableTypes.MutableClass
|
import app.revanced.patcher.util.proxy.mutableTypes.MutableClass
|
||||||
import app.revanced.patcher.util.smali.toInstruction
|
import app.revanced.patcher.util.smali.toInstruction
|
||||||
import app.revanced.patcher.util.smali.toInstructions
|
import app.revanced.patcher.util.smali.toInstructions
|
||||||
import app.revanced.patches.youtube.misc.microg.annotations.MicroGPatchCompatibility
|
import app.revanced.patches.youtube.misc.microg.annotations.MicroGPatchCompatibility
|
||||||
|
import app.revanced.patches.youtube.misc.microg.patch.resource.MicroGResourcePatch
|
||||||
import app.revanced.patches.youtube.misc.microg.patch.resource.enum.StringReplaceMode
|
import app.revanced.patches.youtube.misc.microg.patch.resource.enum.StringReplaceMode
|
||||||
import app.revanced.patches.youtube.misc.microg.shared.Constants.BASE_MICROG_PACKAGE_NAME
|
import app.revanced.patches.youtube.misc.microg.shared.Constants.BASE_MICROG_PACKAGE_NAME
|
||||||
import app.revanced.patches.youtube.misc.microg.shared.Constants.REVANCED_PACKAGE_NAME
|
import app.revanced.patches.youtube.misc.microg.shared.Constants.REVANCED_PACKAGE_NAME
|
||||||
|
@ -26,7 +24,6 @@ import app.revanced.patches.youtube.misc.microg.signatures.GooglePlayUtilitySign
|
||||||
import app.revanced.patches.youtube.misc.microg.signatures.IntegrityCheckSignature
|
import app.revanced.patches.youtube.misc.microg.signatures.IntegrityCheckSignature
|
||||||
import app.revanced.patches.youtube.misc.microg.signatures.PrimeSignature
|
import app.revanced.patches.youtube.misc.microg.signatures.PrimeSignature
|
||||||
import app.revanced.patches.youtube.misc.microg.signatures.ServiceCheckSignature
|
import app.revanced.patches.youtube.misc.microg.signatures.ServiceCheckSignature
|
||||||
import org.jf.dexlib2.AccessFlags
|
|
||||||
import org.jf.dexlib2.Opcode
|
import org.jf.dexlib2.Opcode
|
||||||
import org.jf.dexlib2.builder.MutableMethodImplementation
|
import org.jf.dexlib2.builder.MutableMethodImplementation
|
||||||
import org.jf.dexlib2.builder.instruction.BuilderInstruction21c
|
import org.jf.dexlib2.builder.instruction.BuilderInstruction21c
|
||||||
|
@ -34,8 +31,9 @@ import org.jf.dexlib2.iface.instruction.formats.Instruction21c
|
||||||
import org.jf.dexlib2.iface.reference.StringReference
|
import org.jf.dexlib2.iface.reference.StringReference
|
||||||
import org.jf.dexlib2.immutable.reference.ImmutableStringReference
|
import org.jf.dexlib2.immutable.reference.ImmutableStringReference
|
||||||
|
|
||||||
// @Patch TODO: finish patch
|
@Patch(excludeByDefault = true)
|
||||||
@Name("microg-bytecode-patch")
|
@Dependencies(dependencies = [MicroGResourcePatch::class])
|
||||||
|
@Name("microg-patch")
|
||||||
@Description("Patch to allow YouTube ReVanced to run without root and under a different package name.")
|
@Description("Patch to allow YouTube ReVanced to run without root and under a different package name.")
|
||||||
@MicroGPatchCompatibility
|
@MicroGPatchCompatibility
|
||||||
@Version("0.0.1")
|
@Version("0.0.1")
|
||||||
|
@ -59,30 +57,33 @@ class MicroGBytecodePatch : BytecodePatch(
|
||||||
|
|
||||||
val stringValue = ((instruction as Instruction21c).reference as StringReference).string
|
val stringValue = ((instruction as Instruction21c).reference as StringReference).string
|
||||||
|
|
||||||
val replaceMode =
|
val replaceMode = if (stringValue.equalsAny(
|
||||||
if (stringValue == "com.google" || stringValue == "com.google.android.gms" ||
|
"com.google.android.gms",
|
||||||
stringValue.startsWithAny(
|
"com.google.android.youtube.fileprovider",
|
||||||
"com.google.iid",
|
"com.google.android.c2dm.intent.REGISTER",
|
||||||
"com.google.android.gms.chimera",
|
"com.google.android.c2dm.permission.SEND",
|
||||||
"com.google.android.c2dm",
|
"com.google.iid.TOKEN_REQUEST",
|
||||||
) || stringValue.containsAny(
|
"com.google",
|
||||||
"com.google.android.gms.auth.accounts",
|
"com.google.android.gms.auth.accounts",
|
||||||
"com.google.android.gsf",
|
"com.google.android.youtube.SuggestionProvider",
|
||||||
"content://com.google.settings"
|
"com.google.android.c2dm.intent.REGISTRATION",
|
||||||
)
|
"com.google.android.gsf.action.GET_GLS",
|
||||||
) {
|
"com.google.android.gsf.login",
|
||||||
StringReplaceMode.REPLACE_WITH_MICROG
|
"content://com.google.settings/partner",
|
||||||
} else if (stringValue.startsWith("com.google.android.gms.chimera.container")) // https://github.com/TeamVanced/VancedMicroG/pull/139/file
|
"content://com.google.android.gsf.gservices",
|
||||||
StringReplaceMode.DO_NOT_REPLACE
|
"content://com.google.android.gsf.gservices/prefix",
|
||||||
else if (stringValue.startsWithAny(
|
"com.google.android.c2dm.intent.RECEIVE"
|
||||||
"com.google.android.youtube.SuggestionsProvider",
|
)
|
||||||
"com.google.android.youtube.fileprovider"
|
) {
|
||||||
)
|
StringReplaceMode.REPLACE_WITH_MICROG
|
||||||
) {
|
} else if (stringValue.equalsAny(
|
||||||
StringReplaceMode.REPLACE_WITH_REVANCED
|
"com.google.android.youtube.SuggestionsProvider", "com.google.android.youtube.fileprovider"
|
||||||
} else {
|
)
|
||||||
StringReplaceMode.DO_NOT_REPLACE
|
) {
|
||||||
}
|
StringReplaceMode.REPLACE_WITH_REVANCED
|
||||||
|
} else {
|
||||||
|
StringReplaceMode.DO_NOT_REPLACE
|
||||||
|
}
|
||||||
|
|
||||||
if (replaceMode != StringReplaceMode.DO_NOT_REPLACE) {
|
if (replaceMode != StringReplaceMode.DO_NOT_REPLACE) {
|
||||||
if (proxiedClass == null) {
|
if (proxiedClass == null) {
|
||||||
|
@ -110,20 +111,6 @@ class MicroGBytecodePatch : BytecodePatch(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// replace string back
|
|
||||||
val implementation =
|
|
||||||
signatures.elementAt(2).result!!.findParentMethod(@Name("do-not-replace-method") @MatchingMethod(
|
|
||||||
"Llpe;", "c"
|
|
||||||
) @DirectPatternScanMethod @MicroGPatchCompatibility @Version("0.0.1") object : MethodSignature(
|
|
||||||
"L", AccessFlags.PUBLIC or AccessFlags.STATIC, listOf("L"), null, listOf("com.google.android.gms")
|
|
||||||
) {})!!.method.implementation!!
|
|
||||||
|
|
||||||
implementation.replaceInstruction(
|
|
||||||
implementation.instructions.indexOfFirst { it.opcode == Opcode.CONST_STRING },
|
|
||||||
"const-string v0, \"com.google.android.gms\"".toInstruction()
|
|
||||||
)
|
|
||||||
|
|
||||||
return PatchResultSuccess()
|
return PatchResultSuccess()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,61 +9,53 @@ import app.revanced.patcher.patch.implementation.misc.PatchResult
|
||||||
import app.revanced.patcher.patch.implementation.misc.PatchResultSuccess
|
import app.revanced.patcher.patch.implementation.misc.PatchResultSuccess
|
||||||
import app.revanced.patches.youtube.misc.microg.annotations.MicroGPatchCompatibility
|
import app.revanced.patches.youtube.misc.microg.annotations.MicroGPatchCompatibility
|
||||||
import app.revanced.patches.youtube.misc.microg.shared.Constants.BASE_MICROG_PACKAGE_NAME
|
import app.revanced.patches.youtube.misc.microg.shared.Constants.BASE_MICROG_PACKAGE_NAME
|
||||||
|
import app.revanced.patches.youtube.misc.microg.shared.Constants.REVANCED_APP_NAME
|
||||||
import app.revanced.patches.youtube.misc.microg.shared.Constants.REVANCED_PACKAGE_NAME
|
import app.revanced.patches.youtube.misc.microg.shared.Constants.REVANCED_PACKAGE_NAME
|
||||||
|
|
||||||
// @Patch TODO: finish patch
|
|
||||||
@Name("microg-resource-patch")
|
@Name("microg-resource-patch")
|
||||||
@Description("Resource patch to allow YouTube ReVanced to run without root and under a different package name.")
|
@Description("Resource patch to allow YouTube ReVanced to run without root and under a different package name.")
|
||||||
@MicroGPatchCompatibility
|
@MicroGPatchCompatibility
|
||||||
@Version("0.0.1")
|
@Version("0.0.1")
|
||||||
class MicroGResourcePatch : ResourcePatch() {
|
class MicroGResourcePatch : ResourcePatch() {
|
||||||
override fun execute(data: ResourceData): PatchResult {
|
override fun execute(data: ResourceData): PatchResult {
|
||||||
|
data.getXmlEditor("res/xml/settings_fragment.xml").use {
|
||||||
|
val settingsElementIntent = it.file.createElement("intent")
|
||||||
|
settingsElementIntent.setAttribute("android:targetPackage", "$BASE_MICROG_PACKAGE_NAME.android.gms")
|
||||||
|
settingsElementIntent.setAttribute("android:targetClass", "org.microg.gms.ui.SettingsActivity")
|
||||||
|
|
||||||
|
val settingsElement = it.file.createElement("Preference")
|
||||||
|
settingsElement.setAttribute("android:title", "MicroG")
|
||||||
|
settingsElement.appendChild(settingsElementIntent)
|
||||||
|
|
||||||
|
it.file.firstChild.appendChild(settingsElement)
|
||||||
|
}
|
||||||
|
|
||||||
val manifest = data.get("AndroidManifest.xml").readText()
|
val manifest = data.get("AndroidManifest.xml").readText()
|
||||||
|
|
||||||
data.get("AndroidManifest.xml").writeText(
|
data.get("AndroidManifest.xml").writeText(
|
||||||
manifest.replace(
|
manifest.replace(
|
||||||
"package=\"com.google.android.youtube\"", "package=\"$REVANCED_PACKAGE_NAME\""
|
"package=\"com.google.android.youtube", "package=\"$REVANCED_PACKAGE_NAME"
|
||||||
).replace(
|
).replace(
|
||||||
" android:label=\"@string/application_name\" ", " android:label=\"{APP_NAME}\" "
|
"android:label=\"@string/application_name", "android:label=\"$REVANCED_APP_NAME"
|
||||||
).replace(
|
).replace(
|
||||||
"<uses-permission android:name=\"com.google.android.youtube.permission.C2D_MESSAGE\"",
|
"android:authorities=\"com.google.android.youtube", "android:authorities=\"$REVANCED_PACKAGE_NAME"
|
||||||
"<uses-permission android:name=\"$REVANCED_PACKAGE_NAME.permission.C2D_MESSAGE\""
|
|
||||||
).replace(
|
).replace(
|
||||||
"<permission android:name=\"com.google.android.youtube.permission.C2D_MESSAGE\"",
|
|
||||||
"<permission android:name=\"$REVANCED_PACKAGE_NAME.permission.C2D_MESSAGE\""
|
|
||||||
).replace(
|
|
||||||
"<provider android:authorities=\"com.google.android.youtube.lifecycle-trojan\"",
|
|
||||||
"<provider android:authorities=\"$REVANCED_PACKAGE_NAME.lifecycle-trojan\""
|
|
||||||
).replace(
|
|
||||||
"\"com.google.android.youtube.fileprovider\"", "\"$REVANCED_PACKAGE_NAME.fileprovider\""
|
|
||||||
).replace(
|
|
||||||
"<provider android:authorities=\"com.google.android.youtube.photopicker_images\"",
|
|
||||||
"<provider android:authorities=\"$REVANCED_PACKAGE_NAME.photopicker_images\""
|
|
||||||
).replace("com.google.android.c2dm", "$BASE_MICROG_PACKAGE_NAME.android.c2dm").replace(
|
|
||||||
" </queries>",
|
|
||||||
" <package android:name=\"$BASE_MICROG_PACKAGE_NAME.android.gms\"/>\n </queries>"
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
val replacement = arrayOf(
|
|
||||||
Pair(
|
|
||||||
"com.google.android.youtube.SuggestionProvider", "$REVANCED_PACKAGE_NAME.SuggestionProvider"
|
|
||||||
), Pair(
|
|
||||||
"com.google.android.youtube.fileprovider", "$REVANCED_PACKAGE_NAME.fileprovider"
|
"com.google.android.youtube.fileprovider", "$REVANCED_PACKAGE_NAME.fileprovider"
|
||||||
|
).replace(
|
||||||
|
"com.google.android.youtube.SuggestionProvider", "$REVANCED_PACKAGE_NAME.SuggestionProvider"
|
||||||
|
).replace(
|
||||||
|
"com.google.android.youtube.permission.C2D_MESSAGE", "$REVANCED_PACKAGE_NAME.permission.C2D_MESSAGE"
|
||||||
|
).replace( // TODO: might not be needed
|
||||||
|
"com.google.android.youtube.lifecycle-trojan", "$REVANCED_PACKAGE_NAME.lifecycle-trojan"
|
||||||
|
).replace( // TODO: might not be needed
|
||||||
|
"com.google.android.youtube.photopicker_images", "$REVANCED_PACKAGE_NAME.photopicker_images"
|
||||||
|
).replace(
|
||||||
|
"com.google.android.c2dm", "$BASE_MICROG_PACKAGE_NAME.android.c2dm"
|
||||||
|
).replace(
|
||||||
|
"</queries>", "<package android:name=\"$BASE_MICROG_PACKAGE_NAME.android.gms\"/></queries>"
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
data.forEach {
|
|
||||||
if (it.extension != "xml") return@forEach
|
|
||||||
|
|
||||||
// TODO: use a reader and only replace strings where needed instead of reading & writing the entire file
|
|
||||||
var content = it.readText()
|
|
||||||
replacement.filter { translation -> content.contains(translation.first) }.forEach { translation ->
|
|
||||||
content = content.replace(translation.first, translation.second)
|
|
||||||
}
|
|
||||||
it.writeText(content)
|
|
||||||
}
|
|
||||||
|
|
||||||
return PatchResultSuccess()
|
return PatchResultSuccess()
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -3,4 +3,5 @@ package app.revanced.patches.youtube.misc.microg.shared
|
||||||
object Constants {
|
object Constants {
|
||||||
internal const val BASE_MICROG_PACKAGE_NAME = "com.mgoogle"
|
internal const val BASE_MICROG_PACKAGE_NAME = "com.mgoogle"
|
||||||
internal const val REVANCED_PACKAGE_NAME = "app.revanced.android.youtube"
|
internal const val REVANCED_PACKAGE_NAME = "app.revanced.android.youtube"
|
||||||
|
internal const val REVANCED_APP_NAME = "YouTube ReVanced"
|
||||||
}
|
}
|
Loading…
Reference in a new issue