Some questions: Android Studio “Stop Process”, “Stop All” and running time of a new application
I'm trying to use a totally new application as a base for some tests (with OpenTok) and I'm encountered with some problems, or at least that looks to me like problems.
1. I started a totally new application with an empty activity, and I built it, it takes about 7 seconds from pressing the 'Run' button and till I see the panel with the 'Hello from C++' message on my Android 8.0 device, and it takes about 1:25 seconds (almost a minute and a half) till I see the message when I run the application using 'Debug' running (Shift+F9) is this a normal time for a new application before I added anything to it? a minute and a half till it start running?
2. When I click on the 'Stop' icon (or Ctrl+F2) if I run it in a normal running mode ('Run') then it stop immediately, but if it was running on a 'Debug' mode, then instead of stopping the application it showing me the following options:
https://i.imgur.com/i3P2Lsj.jpg
Stop process: 1. app , 2. app-java, 3. Stop All (Ctrl+F2).
What's the meaning of this? is it a normal behavior at debug mode? can't i just stop the application running without getting this message?
3. More than once I got for a totally new application the following error message:
"content not found: Content name=Frames"
Why?
Here is the full details of this error message:
content not found: Content name=Frames
java.lang.IllegalArgumentException: content not found: Content name=Frames
at com.intellij.ui.content.impl.ContentManagerImpl.addSelectedContent(ContentManagerImpl.java:386)
at com.intellij.execution.ui.layout.impl.GridCellImpl.updateSelection(GridCellImpl.java:447)
at com.intellij.execution.ui.layout.impl.GridImpl.updateSelection(GridImpl.java:117)
at com.intellij.execution.ui.layout.impl.GridImpl.processAddToUi(GridImpl.java:105)
at com.intellij.execution.ui.layout.impl.GridImpl.addNotify(GridImpl.java:88)
at java.awt.Container.addImpl(Container.java:1122)
at com.intellij.ui.tabs.impl.JBTabsImpl.addImpl(JBTabsImpl.java:2665)
at java.awt.Container.add(Container.java:417)
at com.intellij.ui.tabs.impl.JBTabsImpl.updateContainer(JBTabsImpl.java:2639)
at com.intellij.ui.tabs.impl.JBTabsImpl.executeSelectionChange(JBTabsImpl.java:912)
at com.intellij.ui.tabs.impl.JBTabsImpl._setSelected(JBTabsImpl.java:878)
at com.intellij.ui.tabs.impl.JBTabsImpl.select(JBTabsImpl.java:860)
at com.intellij.ui.tabs.impl.TabLabel$1.mousePressed(TabLabel.java:98)
at java.awt.AWTEventMulticaster.mousePressed(AWTEventMulticaster.java:279)
at java.awt.Component.processMouseEvent(Component.java:6545)
at javax.swing.JComponent.processMouseEvent(JComponent.java:3325)
at java.awt.Component.processEvent(Component.java:6313)
at java.awt.Container.processEvent(Container.java:2237)
at java.awt.Component.dispatchEventImpl(Component.java:4903)
at java.awt.Container.dispatchEventImpl(Container.java:2295)
at java.awt.Component.dispatchEvent(Component.java:4725)
at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4889)
at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4523)
at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4467)
at java.awt.Container.dispatchEventImpl(Container.java:2281)
at java.awt.Window.dispatchEventImpl(Window.java:2746)
at java.awt.Component.dispatchEvent(Component.java:4725)
at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:764)
at java.awt.EventQueue.access$500(EventQueue.java:98)
at java.awt.EventQueue$3.run(EventQueue.java:715)
at java.awt.EventQueue$3.run(EventQueue.java:709)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:80)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:90)
at java.awt.EventQueue$4.run(EventQueue.java:737)
at java.awt.EventQueue$4.run(EventQueue.java:735)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:80)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:734)
at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.java:822)
at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.java:759)
at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:423)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
Please advice,
Thanks.
android-studio debugging process compiler-errors
add a comment |
I'm trying to use a totally new application as a base for some tests (with OpenTok) and I'm encountered with some problems, or at least that looks to me like problems.
1. I started a totally new application with an empty activity, and I built it, it takes about 7 seconds from pressing the 'Run' button and till I see the panel with the 'Hello from C++' message on my Android 8.0 device, and it takes about 1:25 seconds (almost a minute and a half) till I see the message when I run the application using 'Debug' running (Shift+F9) is this a normal time for a new application before I added anything to it? a minute and a half till it start running?
2. When I click on the 'Stop' icon (or Ctrl+F2) if I run it in a normal running mode ('Run') then it stop immediately, but if it was running on a 'Debug' mode, then instead of stopping the application it showing me the following options:
https://i.imgur.com/i3P2Lsj.jpg
Stop process: 1. app , 2. app-java, 3. Stop All (Ctrl+F2).
What's the meaning of this? is it a normal behavior at debug mode? can't i just stop the application running without getting this message?
3. More than once I got for a totally new application the following error message:
"content not found: Content name=Frames"
Why?
Here is the full details of this error message:
content not found: Content name=Frames
java.lang.IllegalArgumentException: content not found: Content name=Frames
at com.intellij.ui.content.impl.ContentManagerImpl.addSelectedContent(ContentManagerImpl.java:386)
at com.intellij.execution.ui.layout.impl.GridCellImpl.updateSelection(GridCellImpl.java:447)
at com.intellij.execution.ui.layout.impl.GridImpl.updateSelection(GridImpl.java:117)
at com.intellij.execution.ui.layout.impl.GridImpl.processAddToUi(GridImpl.java:105)
at com.intellij.execution.ui.layout.impl.GridImpl.addNotify(GridImpl.java:88)
at java.awt.Container.addImpl(Container.java:1122)
at com.intellij.ui.tabs.impl.JBTabsImpl.addImpl(JBTabsImpl.java:2665)
at java.awt.Container.add(Container.java:417)
at com.intellij.ui.tabs.impl.JBTabsImpl.updateContainer(JBTabsImpl.java:2639)
at com.intellij.ui.tabs.impl.JBTabsImpl.executeSelectionChange(JBTabsImpl.java:912)
at com.intellij.ui.tabs.impl.JBTabsImpl._setSelected(JBTabsImpl.java:878)
at com.intellij.ui.tabs.impl.JBTabsImpl.select(JBTabsImpl.java:860)
at com.intellij.ui.tabs.impl.TabLabel$1.mousePressed(TabLabel.java:98)
at java.awt.AWTEventMulticaster.mousePressed(AWTEventMulticaster.java:279)
at java.awt.Component.processMouseEvent(Component.java:6545)
at javax.swing.JComponent.processMouseEvent(JComponent.java:3325)
at java.awt.Component.processEvent(Component.java:6313)
at java.awt.Container.processEvent(Container.java:2237)
at java.awt.Component.dispatchEventImpl(Component.java:4903)
at java.awt.Container.dispatchEventImpl(Container.java:2295)
at java.awt.Component.dispatchEvent(Component.java:4725)
at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4889)
at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4523)
at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4467)
at java.awt.Container.dispatchEventImpl(Container.java:2281)
at java.awt.Window.dispatchEventImpl(Window.java:2746)
at java.awt.Component.dispatchEvent(Component.java:4725)
at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:764)
at java.awt.EventQueue.access$500(EventQueue.java:98)
at java.awt.EventQueue$3.run(EventQueue.java:715)
at java.awt.EventQueue$3.run(EventQueue.java:709)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:80)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:90)
at java.awt.EventQueue$4.run(EventQueue.java:737)
at java.awt.EventQueue$4.run(EventQueue.java:735)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:80)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:734)
at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.java:822)
at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.java:759)
at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:423)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
Please advice,
Thanks.
android-studio debugging process compiler-errors
add a comment |
I'm trying to use a totally new application as a base for some tests (with OpenTok) and I'm encountered with some problems, or at least that looks to me like problems.
1. I started a totally new application with an empty activity, and I built it, it takes about 7 seconds from pressing the 'Run' button and till I see the panel with the 'Hello from C++' message on my Android 8.0 device, and it takes about 1:25 seconds (almost a minute and a half) till I see the message when I run the application using 'Debug' running (Shift+F9) is this a normal time for a new application before I added anything to it? a minute and a half till it start running?
2. When I click on the 'Stop' icon (or Ctrl+F2) if I run it in a normal running mode ('Run') then it stop immediately, but if it was running on a 'Debug' mode, then instead of stopping the application it showing me the following options:
https://i.imgur.com/i3P2Lsj.jpg
Stop process: 1. app , 2. app-java, 3. Stop All (Ctrl+F2).
What's the meaning of this? is it a normal behavior at debug mode? can't i just stop the application running without getting this message?
3. More than once I got for a totally new application the following error message:
"content not found: Content name=Frames"
Why?
Here is the full details of this error message:
content not found: Content name=Frames
java.lang.IllegalArgumentException: content not found: Content name=Frames
at com.intellij.ui.content.impl.ContentManagerImpl.addSelectedContent(ContentManagerImpl.java:386)
at com.intellij.execution.ui.layout.impl.GridCellImpl.updateSelection(GridCellImpl.java:447)
at com.intellij.execution.ui.layout.impl.GridImpl.updateSelection(GridImpl.java:117)
at com.intellij.execution.ui.layout.impl.GridImpl.processAddToUi(GridImpl.java:105)
at com.intellij.execution.ui.layout.impl.GridImpl.addNotify(GridImpl.java:88)
at java.awt.Container.addImpl(Container.java:1122)
at com.intellij.ui.tabs.impl.JBTabsImpl.addImpl(JBTabsImpl.java:2665)
at java.awt.Container.add(Container.java:417)
at com.intellij.ui.tabs.impl.JBTabsImpl.updateContainer(JBTabsImpl.java:2639)
at com.intellij.ui.tabs.impl.JBTabsImpl.executeSelectionChange(JBTabsImpl.java:912)
at com.intellij.ui.tabs.impl.JBTabsImpl._setSelected(JBTabsImpl.java:878)
at com.intellij.ui.tabs.impl.JBTabsImpl.select(JBTabsImpl.java:860)
at com.intellij.ui.tabs.impl.TabLabel$1.mousePressed(TabLabel.java:98)
at java.awt.AWTEventMulticaster.mousePressed(AWTEventMulticaster.java:279)
at java.awt.Component.processMouseEvent(Component.java:6545)
at javax.swing.JComponent.processMouseEvent(JComponent.java:3325)
at java.awt.Component.processEvent(Component.java:6313)
at java.awt.Container.processEvent(Container.java:2237)
at java.awt.Component.dispatchEventImpl(Component.java:4903)
at java.awt.Container.dispatchEventImpl(Container.java:2295)
at java.awt.Component.dispatchEvent(Component.java:4725)
at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4889)
at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4523)
at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4467)
at java.awt.Container.dispatchEventImpl(Container.java:2281)
at java.awt.Window.dispatchEventImpl(Window.java:2746)
at java.awt.Component.dispatchEvent(Component.java:4725)
at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:764)
at java.awt.EventQueue.access$500(EventQueue.java:98)
at java.awt.EventQueue$3.run(EventQueue.java:715)
at java.awt.EventQueue$3.run(EventQueue.java:709)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:80)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:90)
at java.awt.EventQueue$4.run(EventQueue.java:737)
at java.awt.EventQueue$4.run(EventQueue.java:735)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:80)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:734)
at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.java:822)
at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.java:759)
at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:423)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
Please advice,
Thanks.
android-studio debugging process compiler-errors
I'm trying to use a totally new application as a base for some tests (with OpenTok) and I'm encountered with some problems, or at least that looks to me like problems.
1. I started a totally new application with an empty activity, and I built it, it takes about 7 seconds from pressing the 'Run' button and till I see the panel with the 'Hello from C++' message on my Android 8.0 device, and it takes about 1:25 seconds (almost a minute and a half) till I see the message when I run the application using 'Debug' running (Shift+F9) is this a normal time for a new application before I added anything to it? a minute and a half till it start running?
2. When I click on the 'Stop' icon (or Ctrl+F2) if I run it in a normal running mode ('Run') then it stop immediately, but if it was running on a 'Debug' mode, then instead of stopping the application it showing me the following options:
https://i.imgur.com/i3P2Lsj.jpg
Stop process: 1. app , 2. app-java, 3. Stop All (Ctrl+F2).
What's the meaning of this? is it a normal behavior at debug mode? can't i just stop the application running without getting this message?
3. More than once I got for a totally new application the following error message:
"content not found: Content name=Frames"
Why?
Here is the full details of this error message:
content not found: Content name=Frames
java.lang.IllegalArgumentException: content not found: Content name=Frames
at com.intellij.ui.content.impl.ContentManagerImpl.addSelectedContent(ContentManagerImpl.java:386)
at com.intellij.execution.ui.layout.impl.GridCellImpl.updateSelection(GridCellImpl.java:447)
at com.intellij.execution.ui.layout.impl.GridImpl.updateSelection(GridImpl.java:117)
at com.intellij.execution.ui.layout.impl.GridImpl.processAddToUi(GridImpl.java:105)
at com.intellij.execution.ui.layout.impl.GridImpl.addNotify(GridImpl.java:88)
at java.awt.Container.addImpl(Container.java:1122)
at com.intellij.ui.tabs.impl.JBTabsImpl.addImpl(JBTabsImpl.java:2665)
at java.awt.Container.add(Container.java:417)
at com.intellij.ui.tabs.impl.JBTabsImpl.updateContainer(JBTabsImpl.java:2639)
at com.intellij.ui.tabs.impl.JBTabsImpl.executeSelectionChange(JBTabsImpl.java:912)
at com.intellij.ui.tabs.impl.JBTabsImpl._setSelected(JBTabsImpl.java:878)
at com.intellij.ui.tabs.impl.JBTabsImpl.select(JBTabsImpl.java:860)
at com.intellij.ui.tabs.impl.TabLabel$1.mousePressed(TabLabel.java:98)
at java.awt.AWTEventMulticaster.mousePressed(AWTEventMulticaster.java:279)
at java.awt.Component.processMouseEvent(Component.java:6545)
at javax.swing.JComponent.processMouseEvent(JComponent.java:3325)
at java.awt.Component.processEvent(Component.java:6313)
at java.awt.Container.processEvent(Container.java:2237)
at java.awt.Component.dispatchEventImpl(Component.java:4903)
at java.awt.Container.dispatchEventImpl(Container.java:2295)
at java.awt.Component.dispatchEvent(Component.java:4725)
at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4889)
at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4523)
at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4467)
at java.awt.Container.dispatchEventImpl(Container.java:2281)
at java.awt.Window.dispatchEventImpl(Window.java:2746)
at java.awt.Component.dispatchEvent(Component.java:4725)
at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:764)
at java.awt.EventQueue.access$500(EventQueue.java:98)
at java.awt.EventQueue$3.run(EventQueue.java:715)
at java.awt.EventQueue$3.run(EventQueue.java:709)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:80)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:90)
at java.awt.EventQueue$4.run(EventQueue.java:737)
at java.awt.EventQueue$4.run(EventQueue.java:735)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:80)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:734)
at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.java:822)
at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.java:759)
at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:423)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
Please advice,
Thanks.
android-studio debugging process compiler-errors
android-studio debugging process compiler-errors
asked Nov 21 '18 at 14:47
Android ProgrammerAndroid Programmer
63
63
add a comment |
add a comment |
0
active
oldest
votes
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%2f53414598%2fsome-questions-android-studio-stop-process-stop-all-and-running-time-of-a%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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.
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%2f53414598%2fsome-questions-android-studio-stop-process-stop-all-and-running-time-of-a%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