We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9da2b4 commit c80b01fCopy full SHA for c80b01f
app/src/main/java/io/github/chsbuffer/revancedxposed/BaseHook.kt
@@ -90,7 +90,7 @@ data class Pairs(
90
@Suppress("UNCHECKED_CAST")
91
@OptIn(ExperimentalSerializationApi::class)
92
class SharedPrefCache(app: Application) : DexKitCacheBridge.Cache {
93
- val file = File(app.cacheDir.path, BuildConfig.BUILD_TYPE.toSha256())
+ val file = File(app.cacheDir.path, BuildConfig.APPLICATION_ID.toSha256())
94
95
val pref = runCatching { ProtoBuf.decodeFromByteArray<Pairs>(file.readBytes()) }.getOrElse {
96
Pairs(mutableMapOf())
0 commit comments