Skip to content

Instantly share code, notes, and snippets.

@kohendrix
Created February 2, 2019 04:25
Show Gist options
  • Select an option

  • Save kohendrix/1c9f0be6840073ed0bdbc54652046d27 to your computer and use it in GitHub Desktop.

Select an option

Save kohendrix/1c9f0be6840073ed0bdbc54652046d27 to your computer and use it in GitHub Desktop.
ReproSample ReproTrigger version
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
}
override fun onResume() {
super.onResume()
Handler().postDelayed({
ReproTrigger.getInstance().send(1, 20) // calling closure
}, 200)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment