Hi! If I have this: ```import java.util.zip.ZipFil...
# getting-started
d
Hi! If I have this:
Copy code
import java.util.zip.ZipFile

private val cpuAbiRegex = """lib/([^/]+)/.+\.so""".toRegex()
ZipFile("/home/dave/Downloads/gms/com.mycompany-650.apk").entries().asSequence().mapNotNull { cpuAbiRegex.matchEntire(it.name)?.groups?.first()?.value }.joinToString(";")
And I run it on REPL, why am I getting:
java.lang.NoSuchMethodError: Line_11.access$getCpuAbiRegex$p(LLine_11;)Lkotlin/text/Regex;
?