Skip to content

Instantly share code, notes, and snippets.

@LiewJunTung
Created March 28, 2019 16:01
Show Gist options
  • Save LiewJunTung/6467104c6883b3870f4ccefb55a23b22 to your computer and use it in GitHub Desktop.
Save LiewJunTung/6467104c6883b3870f4ccefb55a23b22 to your computer and use it in GitHub Desktop.
Remember to update your AndroidManifest.xml
package com.netvirta.android.login
import android.support.v7.app.AppCompatActivity
import android.os.Bundle
import com.netvirta.common.login.LoginView
import sample.R
class LoginActivity : AppCompatActivity(), LoginView {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_login)
}
override fun loginResult(result: Boolean) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment