Skip to content

Commit

Permalink
Obfuscation for Grindr 8.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Lanchon committed Sep 14, 2022
1 parent 508ce73 commit 59bdc7d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion app/src/main/java/com/eljaviluki/grindrplus/Hooker.kt
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class Hooker : IXposedHookLoadPackage {
}

companion object {
const val TARGET_PKG_VERSION_NAME = "8.11.0"
const val TARGET_PKG_VERSION_NAME = "8.16.0"

var pkgParam: LoadPackageParam by InitOnce()
var appContext: Context by InitOnce()
Expand Down
32 changes: 16 additions & 16 deletions app/src/main/java/com/eljaviluki/grindrplus/Obfuscation.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ object Obfuscation {
private const val _base = Constants.GRINDR_PKG + ".base"

object Experiment {
private const val _experiment = "$_base.g"
private const val _experiment = "$_base.experiment"

const val IExperimentsManager = "$_experiment.b"
const val IExperimentsManager = "$_experiment.c"
}
}

object experiment {
private const val _experiment = Constants.GRINDR_PKG + ".experiment"

const val Experiments = "$_experiment.Experiments"
const val Experiments = "$_experiment.a"
object Experiments_ {
const val uncheckedIsEnabled_expMgr = "a"
const val uncheckedIsEnabled_expMgr = "c"
}
}

Expand Down Expand Up @@ -66,28 +66,28 @@ object Obfuscation {
}

object R {
private const val _R = Constants.GRINDR_PKG + ".m"
private const val _R_base = Constants.GRINDR_PKG

const val color = "$_R\$d"
const val color = "$_R_base.h0"
object color_ {
const val grindr_gold_star_gay = "w"
const val grindr_gold_star_gay = "u"
//const val grindr_pure_white = "L" // seems gone
}
}

object storage {
private const val _storage = Constants.GRINDR_PKG + ".storage"

const val UserSession = "$_storage.ai"
const val UserSession2 = "$_storage.aj"
const val UserSession = "$_storage.o0"
const val UserSession2 = "$_storage.p0"

const val IUserSession = "$_storage.IUserSession"
object IUserSession_ {
const val hasFeature_feature = "a"
const val isFree = "i"
const val isNoXtraUpsell = "j"
const val isXtra = "k"
const val isUnlimited = "l"
const val isFree = "j"
const val isNoXtraUpsell = "p"
const val isXtra = "g"
const val isUnlimited = "q"
}
}

Expand All @@ -107,7 +107,7 @@ object Obfuscation {
object utils {
private const val _utils = Constants.GRINDR_PKG + ".utils"

const val ProfileUtils = "$_utils.at"
const val ProfileUtils = "$_utils.w0"
object ProfileUtils_ {
const val onlineIndicatorDuration = "b"
}
Expand All @@ -126,10 +126,10 @@ object Obfuscation {

const val TapsAnimLayout = "$_view.TapsAnimLayout"
object TapsAnimLayout_ {
const val tapType = "g"
const val tapType = "h"

const val getCanSelectVariants = "getCanSelectVariants"
const val setTapType = "a"
const val setTapType = "S"
}
}
}
Expand Down

0 comments on commit 59bdc7d

Please sign in to comment.