Skip to content

Commit

Permalink
Enforce start
Browse files Browse the repository at this point in the history
  • Loading branch information
rbro112 committed Dec 12, 2024
1 parent e67d27c commit 8723634
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ abstract class LocalSnapshots : DefaultTask() {
) {
ZipFile(apk).use { zip ->
zip.entries().asSequence().forEach { entry ->
if (entry.name.matches(Regex("classes.*\\.dex"))) {
if (entry.name.matches(Regex("^classes.*\\.dex"))) {
val outputFile = File(outputDir, entry.name)
zip.getInputStream(entry).use { input ->
outputFile.outputStream().use { output ->
Expand Down

0 comments on commit 8723634

Please sign in to comment.