feat: Initial commit!

This commit is contained in:
ΞTΞRNAL
2025-10-03 17:10:09 +05:30
parent b720b58886
commit 0676212a38
279 changed files with 449644 additions and 2215 deletions

View File

@@ -13,7 +13,12 @@ class TestMappings {
val classMapper = ClassMapper()
val gson = GsonBuilder().setPrettyPrinting().create()
val apkFile = File(System.getenv("SNAPCHAT_APK")!!)
val apkPath = System.getenv("SNAPCHAT_APK")
if (apkPath == null) {
println("Skipping test: SNAPCHAT_APK environment variable is not set.")
return
}
val apkFile = File(apkPath)
classMapper.loadApk(apkFile.absolutePath)
runBlocking {
val result = classMapper.run()