Created
March 28, 2019 16:01
-
-
Save LiewJunTung/6467104c6883b3870f4ccefb55a23b22 to your computer and use it in GitHub Desktop.
Remember to update your AndroidManifest.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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