android: bump test activity (#8483)

Now users can test light drivers too. See https://github.com/koreader/android-luajit-launcher/pull/339#issuecomment-977822717
This commit is contained in:
Martín Fernández
2021-11-25 22:04:09 +01:00
committed by GitHub
parent e66b26865b
commit 3427c207b0
3 changed files with 5 additions and 5 deletions

View File

@@ -630,9 +630,9 @@ To:
end
if Device:isAndroid() then
table.insert(self.menu_items.developer_options.sub_item_table, {
text = _("Start E-ink test"),
text = _("Start compatibility test"),
callback = function()
Device:epdTest()
Device:test()
end,
})
end

View File

@@ -390,8 +390,8 @@ function Device:info()
return common_text..platform_text..eink_text..wakelocks_text
end
function Device:epdTest()
android.einkTest()
function Device:test()
android.runTest()
end
function Device:exit()