Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

levmc

macrumors 6502a
Original poster
Jan 18, 2019
687
25
It's showing two tabs.
"App center" and "My apps"
"My apps" is blacked out.
 
Yes I did, and it worked for some time. I believe that is not the problem currently, as I can still open it (but in a case of accessibility problem, it didn't open at all).
 
Try to delete the preferences files from ~/Preferences
com.BlueStacks.AppPlayer.SavedFrame.plist
com.BlueStacks.AppPlayer.FLE.plist
com.BlueStacks.AppPlayer.plist
com.bluestacks.BlueStacks.plist
 
How do you go to that Preferences folder?
I searched it on Finder but didn't get anything.
 
Try to delete the preferences files from ~/Preferences
com.BlueStacks.AppPlayer.SavedFrame.plist
com.BlueStacks.AppPlayer.FLE.plist
com.BlueStacks.AppPlayer.plist
com.bluestacks.BlueStacks.plist
I could find everything except for FLE. Instead, I found this:
com.BlueStacks.AppPlayer.Guid.plist.
Should I delete this too?
 
I could find everything except for FLE. Instead, I found this:
com.BlueStacks.AppPlayer.Guid.plist.
Should I delete this too?
You can delete that too, it's trial and error. Those files are re-created when you next start BlueStacks.
 
I deleted those and when I opened Bluestacks it gets stuck on "Preparing bluestacks".
 
I deleted those and when I opened Bluestacks it gets stuck on "Preparing bluestacks".
For me, it displays a window saying that it will fix the installation, then starts normally.
You should probably try to uninstall BlueStacks completely and install it again.
This is an AppleScript I made for myself to uninstall BlueStacks. You can run it with /Applications/Utilities/Script Editor.app, it asks for your password in order to delete the LaunchDaemon, PrivilegedHelperTool and other components installed by BlueStacks.
Code:
try
    do shell script "launchctl unload -wF /Library/LaunchDaemons/com.BlueStacks.AppPlayer.bstservice_helper.plist" with administrator privileges
end try
try
    do shell script "rm /Library/LaunchDaemons/com.BlueStacks.AppPlayer.bstservice_helper.plist" with administrator privileges
end try
try
    do shell script "rm /Library/PrivilegedHelperTools/com.BlueStacks.AppPlayer.bstservice_helper" with administrator privileges
end try
try
    do shell script "rm -r /Applications/BlueStacks.app" with administrator privileges
end try
try
    do shell script "killall bsteventtool" with administrator privileges
end try
try
    do shell script "rm -r ~/Library/BlueStacks" with administrator privileges
end try
try
    do shell script "rm ~/Library/Preferences/com.BlueStacks.*"
end try
try
    do shell script "rm ~/Library/Preferences/com.bluestacks.*"
end try
try
    do shell script "rm ~/Library/LaunchAgents/com.BlueStacks*"
end try
try
    do shell script "rm -r ~/Library/Caches/com.bluestacks.BlueStacks"
end try
try
    do shell script "rm -r ~/Library/WebKit/com.bluestacks.BlueStacks"
end try
try
    do shell script "rm -r ~/Library/Caches/Sessions/BlueStacks"
end try
try
    do shell script "rm -r ~/Library/Caches/KSCrashReports/BlueStacks"
end try
try
    do shell script "rm -r ~/Library/Cookies/com.bluestacks*"
end try
try
    do shell script "rm /Library/Logs/DiagnosticReports/BlueStacks*"
end try
 
Would it not work as well if I just tried to delete it from the Application folder?
 
I just deleted the app from Applications and reinstalled it, and it works now. Thank you anyways.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.