Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
PICTURE
I have done my project view on android studio kotlin, and when I run it on the emulator it doesn't show any error but the app is forced to close, then I open the manifest.xml and there is a warning there told me to set the backup attributes, and then a add the allowbackup and fullbackupcontent to True but is still showing the same error, please help me to fix this otherwise my application couldn't run well
Thank you anyway :)
is this the stack trace? I'm sorry but I was a beginner
Try this to hide that warning;
<application
...
tools:ignore="Allowbackup,GoogleAppIndexingWarning">
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I have two computers, both with same hardware and Android Studio settings.
When I build the app on the first, the app works well, but when I build the app on the second, some parts of the app lifecycle just don't work.
Example: the app never pass through the onCreate()
Hey #Matheos welcome to Stackoverflow!!
As for solution, try to Clean Project and then rebuild on second one PC.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I have integrated parse sdk in my android app and tested it on android 5.0 on a real device. The problem is that initially the app does not display any content it is completely blank, but after few hours the app starts functioning normally with push notifications. Has anyone faced this issue before or can anyone tell me why is this happening ?
So i finally have got the solution to this problem. If you have been using parse example from foamyguy from githhub you would have a blank activity in android 5.0 when you run it for the first time. The solution is just go to ParseApplication.java and comment the line which says
ParseInstallation.getCurrentInstallation().saveInBackground();
And run it, it will work, if your application crashes, then use this line
ParseInstallation.getCurrentInstallation().saveEventually();
This will completely fix your application.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I have an androidn app in eclips.
it works when i debbug without any break points
but if i add a break poing it dosent work black screen on the emulator
after remove break point it works again.
EDIT:
when i delete .metadata folder it Works at the end
i had same problem then i installed android sutudio. eclipse and android sutudio are wanting
The execution pauses when it reaches the breakpoint. The IDE usually shows you the line where the execution paused...
...and is waiting for you to press a button to resume it.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
i am developing an android app using fragment with eclipse, when i maximize(bringing the app foreground) after a long time the app it crashes. All the java class extends the class fragment.
Any help will be appreciated.
Thanks.
Without stacktrace,
Let me guess,
You used some static variables and their values lost, so you got a NullPointerException. And when it occured device wasn't at debug environment for getting stacktrace :)
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I want to know which way to change Logcat Output Format in Android DDMS.
I 'm using Android Studio 0.4.2 on MAC. I know that I can customize the format from terminal but I also need to do this in Android DDMS Monitor tool.
Link to customize .