Default activity not found - Nothing solves this problem
I can't find the default activity when running my new app, I also can't find what's the issue in my manifests. I tried to read a lot about this but nothing of those similar problems seemed to help me out.
This is what my manifests look like:
<?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>
EDIT: // LOGIN CLASS
I tried to Invalidate caches/restart, but that didn't work.
So, here comes the login class and I hope we can found a solution for this error together.
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]
}
java android kotlin android-manifest
add a comment |
I can't find the default activity when running my new app, I also can't find what's the issue in my manifests. I tried to read a lot about this but nothing of those similar problems seemed to help me out.
This is what my manifests look like:
<?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>
EDIT: // LOGIN CLASS
I tried to Invalidate caches/restart, but that didn't work.
So, here comes the login class and I hope we can found a solution for this error together.
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]
}
java android kotlin android-manifest
Could you post code ofLogin
class
– ConstOrVar
Nov 1 at 18:02
Please read this meta post on swearing in posts. Also, create a Minimal, Complete, and Verifiable example
– Zoe
Nov 1 at 18:19
I wouldn't consider damn a swear word.
– LVT9
Nov 1 at 19:37
Could you share your Login class? It could be a typo in your activity name or different package name..
– Aaron
Nov 1 at 22:20
Yes I just shared it in the main post now.
– LVT9
Nov 2 at 11:22
add a comment |
I can't find the default activity when running my new app, I also can't find what's the issue in my manifests. I tried to read a lot about this but nothing of those similar problems seemed to help me out.
This is what my manifests look like:
<?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>
EDIT: // LOGIN CLASS
I tried to Invalidate caches/restart, but that didn't work.
So, here comes the login class and I hope we can found a solution for this error together.
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]
}
java android kotlin android-manifest
I can't find the default activity when running my new app, I also can't find what's the issue in my manifests. I tried to read a lot about this but nothing of those similar problems seemed to help me out.
This is what my manifests look like:
<?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>
EDIT: // LOGIN CLASS
I tried to Invalidate caches/restart, but that didn't work.
So, here comes the login class and I hope we can found a solution for this error together.
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]
}
java android kotlin android-manifest
java android kotlin android-manifest
edited Nov 2 at 11:25
asked Nov 1 at 17:38
LVT9
105
105
Could you post code ofLogin
class
– ConstOrVar
Nov 1 at 18:02
Please read this meta post on swearing in posts. Also, create a Minimal, Complete, and Verifiable example
– Zoe
Nov 1 at 18:19
I wouldn't consider damn a swear word.
– LVT9
Nov 1 at 19:37
Could you share your Login class? It could be a typo in your activity name or different package name..
– Aaron
Nov 1 at 22:20
Yes I just shared it in the main post now.
– LVT9
Nov 2 at 11:22
add a comment |
Could you post code ofLogin
class
– ConstOrVar
Nov 1 at 18:02
Please read this meta post on swearing in posts. Also, create a Minimal, Complete, and Verifiable example
– Zoe
Nov 1 at 18:19
I wouldn't consider damn a swear word.
– LVT9
Nov 1 at 19:37
Could you share your Login class? It could be a typo in your activity name or different package name..
– Aaron
Nov 1 at 22:20
Yes I just shared it in the main post now.
– LVT9
Nov 2 at 11:22
Could you post code of
Login
class– ConstOrVar
Nov 1 at 18:02
Could you post code of
Login
class– ConstOrVar
Nov 1 at 18:02
Please read this meta post on swearing in posts. Also, create a Minimal, Complete, and Verifiable example
– Zoe
Nov 1 at 18:19
Please read this meta post on swearing in posts. Also, create a Minimal, Complete, and Verifiable example
– Zoe
Nov 1 at 18:19
I wouldn't consider damn a swear word.
– LVT9
Nov 1 at 19:37
I wouldn't consider damn a swear word.
– LVT9
Nov 1 at 19:37
Could you share your Login class? It could be a typo in your activity name or different package name..
– Aaron
Nov 1 at 22:20
Could you share your Login class? It could be a typo in your activity name or different package name..
– Aaron
Nov 1 at 22:20
Yes I just shared it in the main post now.
– LVT9
Nov 2 at 11:22
Yes I just shared it in the main post now.
– LVT9
Nov 2 at 11:22
add a comment |
3 Answers
3
active
oldest
votes
This error is for the IDE, try replace this:
<activity android:name=".Login">
For this:
<activity android:name="com.example.pear.game.Login">
I tried this aswell but it didn't fix the error. Could it be anything outside the manifest folder causing this error?
– LVT9
Nov 1 at 17:52
add a comment |
First of all try to invalide caches from File -> Invalide Caches/ Restart and from the same menu sync project wit Gradle files.
And it may be a stupid question but important, does this activity extend AppCompatActivity
? If not that's why it's not visible in manifest
Yes it extend AppCompatActivity. Ok, do you know how to fix the error?
– LVT9
Nov 1 at 19:35
OK, so to sum up, manifest doesn't find activity or is there an error while installing? Could you provide more informations or attach a screenshot of the problem with logs?
– Domin
Nov 1 at 20:18
Manifest dont find Default activity, that's it I think. So the program not even run, only "Error running 'app': Default Activity not found" appears in left corner.
– LVT9
Nov 2 at 22:19
add a comment |
Click Run/Edit Configurations...
select app
and in General
tab
under Launch Options
make sure that
in Launch:
the selected option is Default Activity
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53106523%2fdefault-activity-not-found-nothing-solves-this-problem%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
This error is for the IDE, try replace this:
<activity android:name=".Login">
For this:
<activity android:name="com.example.pear.game.Login">
I tried this aswell but it didn't fix the error. Could it be anything outside the manifest folder causing this error?
– LVT9
Nov 1 at 17:52
add a comment |
This error is for the IDE, try replace this:
<activity android:name=".Login">
For this:
<activity android:name="com.example.pear.game.Login">
I tried this aswell but it didn't fix the error. Could it be anything outside the manifest folder causing this error?
– LVT9
Nov 1 at 17:52
add a comment |
This error is for the IDE, try replace this:
<activity android:name=".Login">
For this:
<activity android:name="com.example.pear.game.Login">
This error is for the IDE, try replace this:
<activity android:name=".Login">
For this:
<activity android:name="com.example.pear.game.Login">
answered Nov 1 at 17:42
Jose Alberto Navarro Barrios
1163
1163
I tried this aswell but it didn't fix the error. Could it be anything outside the manifest folder causing this error?
– LVT9
Nov 1 at 17:52
add a comment |
I tried this aswell but it didn't fix the error. Could it be anything outside the manifest folder causing this error?
– LVT9
Nov 1 at 17:52
I tried this aswell but it didn't fix the error. Could it be anything outside the manifest folder causing this error?
– LVT9
Nov 1 at 17:52
I tried this aswell but it didn't fix the error. Could it be anything outside the manifest folder causing this error?
– LVT9
Nov 1 at 17:52
add a comment |
First of all try to invalide caches from File -> Invalide Caches/ Restart and from the same menu sync project wit Gradle files.
And it may be a stupid question but important, does this activity extend AppCompatActivity
? If not that's why it's not visible in manifest
Yes it extend AppCompatActivity. Ok, do you know how to fix the error?
– LVT9
Nov 1 at 19:35
OK, so to sum up, manifest doesn't find activity or is there an error while installing? Could you provide more informations or attach a screenshot of the problem with logs?
– Domin
Nov 1 at 20:18
Manifest dont find Default activity, that's it I think. So the program not even run, only "Error running 'app': Default Activity not found" appears in left corner.
– LVT9
Nov 2 at 22:19
add a comment |
First of all try to invalide caches from File -> Invalide Caches/ Restart and from the same menu sync project wit Gradle files.
And it may be a stupid question but important, does this activity extend AppCompatActivity
? If not that's why it's not visible in manifest
Yes it extend AppCompatActivity. Ok, do you know how to fix the error?
– LVT9
Nov 1 at 19:35
OK, so to sum up, manifest doesn't find activity or is there an error while installing? Could you provide more informations or attach a screenshot of the problem with logs?
– Domin
Nov 1 at 20:18
Manifest dont find Default activity, that's it I think. So the program not even run, only "Error running 'app': Default Activity not found" appears in left corner.
– LVT9
Nov 2 at 22:19
add a comment |
First of all try to invalide caches from File -> Invalide Caches/ Restart and from the same menu sync project wit Gradle files.
And it may be a stupid question but important, does this activity extend AppCompatActivity
? If not that's why it's not visible in manifest
First of all try to invalide caches from File -> Invalide Caches/ Restart and from the same menu sync project wit Gradle files.
And it may be a stupid question but important, does this activity extend AppCompatActivity
? If not that's why it's not visible in manifest
answered Nov 1 at 18:07
Domin
438114
438114
Yes it extend AppCompatActivity. Ok, do you know how to fix the error?
– LVT9
Nov 1 at 19:35
OK, so to sum up, manifest doesn't find activity or is there an error while installing? Could you provide more informations or attach a screenshot of the problem with logs?
– Domin
Nov 1 at 20:18
Manifest dont find Default activity, that's it I think. So the program not even run, only "Error running 'app': Default Activity not found" appears in left corner.
– LVT9
Nov 2 at 22:19
add a comment |
Yes it extend AppCompatActivity. Ok, do you know how to fix the error?
– LVT9
Nov 1 at 19:35
OK, so to sum up, manifest doesn't find activity or is there an error while installing? Could you provide more informations or attach a screenshot of the problem with logs?
– Domin
Nov 1 at 20:18
Manifest dont find Default activity, that's it I think. So the program not even run, only "Error running 'app': Default Activity not found" appears in left corner.
– LVT9
Nov 2 at 22:19
Yes it extend AppCompatActivity. Ok, do you know how to fix the error?
– LVT9
Nov 1 at 19:35
Yes it extend AppCompatActivity. Ok, do you know how to fix the error?
– LVT9
Nov 1 at 19:35
OK, so to sum up, manifest doesn't find activity or is there an error while installing? Could you provide more informations or attach a screenshot of the problem with logs?
– Domin
Nov 1 at 20:18
OK, so to sum up, manifest doesn't find activity or is there an error while installing? Could you provide more informations or attach a screenshot of the problem with logs?
– Domin
Nov 1 at 20:18
Manifest dont find Default activity, that's it I think. So the program not even run, only "Error running 'app': Default Activity not found" appears in left corner.
– LVT9
Nov 2 at 22:19
Manifest dont find Default activity, that's it I think. So the program not even run, only "Error running 'app': Default Activity not found" appears in left corner.
– LVT9
Nov 2 at 22:19
add a comment |
Click Run/Edit Configurations...
select app
and in General
tab
under Launch Options
make sure that
in Launch:
the selected option is Default Activity
add a comment |
Click Run/Edit Configurations...
select app
and in General
tab
under Launch Options
make sure that
in Launch:
the selected option is Default Activity
add a comment |
Click Run/Edit Configurations...
select app
and in General
tab
under Launch Options
make sure that
in Launch:
the selected option is Default Activity
Click Run/Edit Configurations...
select app
and in General
tab
under Launch Options
make sure that
in Launch:
the selected option is Default Activity
answered Nov 1 at 18:29
forpas
8,1001419
8,1001419
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53106523%2fdefault-activity-not-found-nothing-solves-this-problem%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Could you post code of
Login
class– ConstOrVar
Nov 1 at 18:02
Please read this meta post on swearing in posts. Also, create a Minimal, Complete, and Verifiable example
– Zoe
Nov 1 at 18:19
I wouldn't consider damn a swear word.
– LVT9
Nov 1 at 19:37
Could you share your Login class? It could be a typo in your activity name or different package name..
– Aaron
Nov 1 at 22:20
Yes I just shared it in the main post now.
– LVT9
Nov 2 at 11:22