Commit 1426ee2e authored by vvb2060's avatar vvb2060 Committed by John Wu

Fix Android build version sdk in script

parent b6643b7b
...@@ -76,7 +76,7 @@ class AppShellInit : BaseShellInit() { ...@@ -76,7 +76,7 @@ class AppShellInit : BaseShellInit() {
fun getBool(name: String) = getVar(name).toBoolean() fun getBool(name: String) = getVar(name).toBoolean()
shell.newJob().apply { shell.newJob().apply {
add("export SDK_INT=${Build.VERSION.SDK_INT}") add("export API=${Build.VERSION.SDK_INT}")
add(context.rawResource(R.raw.manager)) add(context.rawResource(R.raw.manager))
if (shell.isRoot) { if (shell.isRoot) {
add(context.assets.open("util_functions.sh")) add(context.assets.open("util_functions.sh"))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment