Github user sagar15795 commented on a diff in the pull request:
https://github.com/apache/incubator-taverna-mobile/pull/64#discussion_r171318811
--- Diff:
app/src/main/java/org/apache/taverna/mobile/ui/login/LoginFragment.java ---
@@ -162,6 +167,20 @@ public void login(View v) {
}
}
+ @OnClick(R.id.bRegister)
+ public void register(View v) {
+ if (Build.VERSION.SDK_INT < 15) {
+ Intent i = new Intent(Intent.ACTION_VIEW);
--- End diff --
use `intent` in place of `i`---
