Я не могу найти активность по умолчанию при запуске моего нового приложения, я также не могу найти, в чем проблема в моих манифестах. Я пытался много читать об этом, но ничто из подобных проблем не помогло мне.
Вот так выглядят мои манифесты:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.pear.game">
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:allowBackup="true"
android:icon="@mipmap/minionicon"
android:label="@string/app_name"
android:roundIcon="@mipmap/minionicon"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity"
android:label="@string/app_name">
</activity>
<activity android:name=".Login">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
РЕДАКТИРОВАТЬ: // LOGIN CLASS
Я пытался сделать недействительными кэши / перезапустить, но это не сработало.
Итак, вот класс входа в систему, и я надеюсь, что мы сможем найти решение этой ошибки вместе.
package com.example.pear.game
import android.content.Intent
import android.support.v7.app.AppCompatActivity
import android.os.Bundle
import android.view.View
import android.widget.Toast
import com.google.firebase.auth.FirebaseAuth
import com.google.firebase.database.FirebaseDatabase
import kotlinx.android.synthetic.main.activity_login.*
import java.util.*
class Login : AppCompatActivity() {
private var mAuth:FirebaseAuth?=null
private var database=FirebaseDatabase.getInstance()
private var myRef=database.reference
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_login)
mAuth=FirebaseAuth.getInstance()
}
fun buLoginEvent(view:View){
LoginToFirebase(etUser.text.toString(),etPassword.text.toString())
}
fun LoginToFirebase(email:String,password:String){
mAuth!!.createUserWithEmailAndPassword(email,password)
.addOnCompleteListener(this){task ->
if(task.isSuccessful){
Toast.makeText(applicationContext,"Successful login", Toast.LENGTH_LONG).show()
var currentUser=mAuth!!.currentUser
// Save in database
if(currentUser!=null) {
myRef.child("Users").child(SplitString(currentUser.email.toString())).child("Request")
.setValue(currentUser.uid).toString()
}
LoadMain()
}else
{
Toast.makeText(applicationContext,"Login failed", Toast.LENGTH_LONG).show()
}
}
}
override fun onStart() {
super.onStart()
LoadMain()
}
fun LoadMain(){
var currentUser=mAuth!!.currentUser
if(currentUser!=null) {
var intent = Intent(this, MainActivity::class.java)
intent.putExtra("email", currentUser.email)
intent.putExtra("uid", currentUser.uid)
startActivity(intent)
}
}
}
fun SplitString(str:String):String{
var splitStr=str.split('@')
return splitStr[0]
}