Skip to content

Commit

Permalink
Add simple fix to #161
Browse files Browse the repository at this point in the history
  • Loading branch information
jurplel committed Aug 24, 2022
1 parent 2b22cf1 commit 90806b0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion action/src/main.ts
Expand Up @@ -101,7 +101,11 @@ class Inputs {
this.arch = "win64_msvc2017_64";
}
} else if (this.target === "android") {
this.arch = "android_armv7";
if (compareVersions(this.version, ">=", "5.14.0")) {
this.arch = "android"
} else {
this.arch = "android_armv7";
}
}
}

Expand Down

0 comments on commit 90806b0

Please sign in to comment.