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
| private void userLogin(String email, String password) { | |
| showProgressDialog(); | |
| mFirebaseAuth.signInWithEmailAndPassword(email, password) | |
| .addOnCompleteListener(new OnCompleteListener<AuthResult>() { | |
| @Override | |
| public void onComplete(@NonNull Task<AuthResult> task) { | |
| Log.d(TAG, "signInWithEmail:onComplete:" + task.isSuccessful()); | |
| if (!task.isSuccessful()) { | |
| Log.w(TAG, "signInWithEmail", task.getException()); |
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
| apply plugin: 'com.android.application' | |
| apply plugin: 'kotlin-android' | |
| apply plugin: 'kotlin-android-extensions' | |
| android { | |
| compileSdkVersion rootProject.compileSdkVersion | |
| def versionPropsFile = file('version.properties') | |
| def value = 0 | |
| Properties versionProps = new Properties() |
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.kinomap.trainingapps.helper | |
| import android.content.Intent | |
| import android.os.Bundle | |
| import android.preference.PreferenceManager | |
| import android.util.Log | |
| import android.view.LayoutInflater | |
| import android.view.View | |
| import android.view.ViewGroup | |
| import android.widget.ImageView |
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.kinomap.kinomapcommon.util | |
| import android.content.SharedPreferences | |
| import android.content.res.Resources | |
| import android.graphics.drawable.Drawable | |
| import android.os.Build | |
| import android.view.View | |
| import androidx.annotation.DrawableRes | |
| import androidx.annotation.PluralsRes | |
| import androidx.fragment.app.FragmentManager |
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.kinomap.trainingapps.helper | |
| import android.annotation.SuppressLint | |
| import android.content.Context | |
| import android.content.SharedPreferences | |
| import android.content.pm.ActivityInfo | |
| import android.os.Bundle | |
| import android.preference.PreferenceManager | |
| import android.util.Log | |
| import android.view.Menu |