diff --git a/android/tester-main.c b/android/tester-main.c
index e7b1e1b..bbb3375 100644
--- a/android/tester-main.c
+++ b/android/tester-main.c
g_idle_add(verify_callback, step);
}
-static void schedule_action_verification(struct step *step)
+void schedule_action_verification(struct step *step)
{
g_idle_add_full(G_PRIORITY_HIGH_IDLE, verify_action, step, NULL);
}
diff --git a/android/tester-main.h b/android/tester-main.h
index a239ae1..0f3f165 100644
--- a/android/tester-main.h
+++ b/android/tester-main.h
struct queue *get_gatt_tests(void);
void remove_gatt_tests(void);
+/* Generic tester API */
+void schedule_action_verification(struct step *step);
+
/* Emulator actions */
void emu_setup_powered_remote_action(void);
void emu_set_pin_code_action(void);