Confirm Exit Dialog When Closing Android Studio
Solution 1:
For MAC users follow the following steps:
1)Select Preferences
from the Android Studio
menu
2)Scroll down till the IDE Settings
and select the sub section General
3)In the Startup/Shutdown
section, you will find Confirm application exit
. Select it to enable it again
4)Press Apply
For Windows users follow the following steps:
1)Select File
from the toolbar
2)Select Settings
3)Scroll down till the IDE Settings
and select the sub section General
4)In the Startup/Shutdown
section, you will find Confirm application exit
. Select it to enable it again
5)Press Apply
Solution 2:
- Open File -> Settings
- Enter
exit
in the search box on the top left - Click on
System Settings
- Check
Confirm application exit
- Click on
Apply
Solution 3:
1. Mac Shift+Cmd+A, Windows Ctrl+Alt+S
2. Type "Confirm application exit".
3. Switch ON / OFF
in the same windows.
Solution 4:
To enable confirmation exit
File -> settings -> General -> Tick confirm application exit
Solution 5:
Alternatively to the above answers, you can prefer the hackish way of altering IDE settings - by editing ide.general.xml
settings file (on Windows it shall be C:\Users\<LOGIN>\.AndroidStudio\config\options
folder) and altering <option name="confirmExit" value="false" />
to true
:)
Post a Comment for "Confirm Exit Dialog When Closing Android Studio"