INNER CODE UNIT · Kotlin
AppPatchInfo
NexAlloy/NexAlloy · app/src/main/java/io/github/nexalloy/AppPatchInfo.kt:12
class AppPatchInfo(val appName: String, val packageName: String, val patches: Array<Patch>)
val appPatchConfigurations = listOf(
AppPatchInfo("YouTube", "com.google.android.youtube", YouTubePatches),
AppPatchInfo("YT Music", "com.google.android.apps.youtube.music", YTMusicPatches),
AppPatchInfo("Reddit", "com.reddit.frontpage", RedditPatches),
AppPatchInfo("Google Photos", "com.google.android.apps.photos", GooglePhotosPatches),
AppPatchInfo("Photomath", "com.microblink.photomath", PhotomathPatches),
AppPatchInfo("Instagram", "com.instagram.android", MetaPatches),
AppPatchInfo("Threads", "com.instagram.barcelona", MetaPatches),
AppPatchInfo("Strava", "com.strava", StravaPatches),
AppPatchInfo("AllTrails", "com.alltrails.alltrails", AllTrailsPatches),
)
val patchesByPackage = appPatchConfigurations.associate { it.packageName to it.patches }