Questions tagged [macos-mojave]

macOS Mojave (version 10.14) is the fifteenth major release of Apple's desktop operating system for Mac computers. Use this tag [macos-mojave] to ask questions related to this specific version of the macOS platform. Use the related tags [objective-c] and [swift] for issues specific to those programming languages.

macOS Mojave (version 10.14) is Apple's Desktop operating system. It was introduced on June 4th at the WWDC 2018 and publicly released on 24 September 2018. It features several advances in technologies like Machine Learning (Core ML 2) and Graphics Processing (Metal 2).

It also comes with a new visual appearances like full Dark Mode and Dynamic Desktop background. The Finder has been improved with Gallery View and Quick Actions.

macOS Mojave requires a Mac with support for Metal (Late 2012 and later). It has started the process of deprecating OpenGL and OpenCL in favour of Metal and Metal 2.

Related Tags:

925 questions
8
votes
0 answers

How do I add/request microphone permission to Java app that runs on MacOS Mojave 10.14?

According to the new privacy feature of MacOS Mojave 10.14 that needs to confirm permission to use microphone on apps, My Java app (runnable jar) is not recording sound at all when it is running not from a Terminal or Eclipse. How can I add/request…
Or Aini
  • 81
  • 3
8
votes
2 answers

./configure: error: the HTTP XSLT module requires the libxml2/libxslt libraries

I recently updated my mac-os to Mojave. I was using Nginx and it was working on my previous os but after updating to Mojave, I am not able to start my Nginx. So I tried to install it again, first, it gave me c compiler error, So I downloaded the…
Nikhil Dhirmalani
  • 127
  • 1
  • 1
  • 7
8
votes
0 answers

gdb does not run on Mojave 10.14.2

I have installed gdb on Mojave 10.14.2 following the description given in here: https://sourceware.org/gdb/wiki/PermissionsDarwin When I try to run the executable, it complains: Starting program: /Users/sfv/test/code1 [New Thread 0x1a03 of process…
svakili
  • 1,909
  • 4
  • 19
  • 24
8
votes
3 answers

How to enable PHP Intl extension on macOS Mojave?

I'm trying to install Magento (2.3.0) on macOS Mojave. Magento shows PHP Extension intl. is missing. I tried the below to resolve: Made a copy of php.ini using cp /etc/php.ini.default php.ini Removed ";" before extension=php_intl.dll Restart…
Suren Konathala
  • 3,497
  • 5
  • 43
  • 73
8
votes
1 answer

com.apple.iTunes AEDeterminePermissionToAutomateTarget is always return -600

import ScriptingBridge class iTunesAccess { static func requestAccess() -> Bool { guard #available(OSX 10.14, *) else { return true } if var addressDesc = NSAppleEventDescriptor(bundleIdentifier:…
Horoko
  • 134
  • 10
8
votes
1 answer

What is alternative to NSStatusItem.popUpMenu?

NSStatusItem.popUpMenu has been deprecated in macOS 10.14, but I can't find a nice alternative. let m = statusItem.menu! statusItem.popUpMenu(m) // deprecated I tried direct pop-up using menu and the button, but it doesn't position properly. let m1…
eonil
  • 83,476
  • 81
  • 317
  • 516
8
votes
1 answer

Xcode 7.3.1 cannot be opened in MacOS Mojave

After updating from macOS High Sierra to Mojave and I successfully installed Xcode 7.3.1 but it cannot be opened. Does Mojave support Xcode 7?
Eleazer Toluan
  • 233
  • 4
  • 14
8
votes
3 answers

How to change the iOS Simulator "window background color" (Full Screen, Xcode 10, Mojave, Dark Mode)

Mojave (macOS 10.14) is great. Xcode 10.0 (10A254a) is great. Dark Mode is great. What is not so great, unless I'm missing something, is this ugly gray background of the iOS simulator window (when in full screen): Any idea on how to change that…
backslash-f
  • 7,923
  • 7
  • 52
  • 80
8
votes
3 answers

How can crashes of Safari extensions on Mojave be avoided?

When I build my macOS application that has an Safari extension in it, which I run on Safari, it crashes after a couple of seconds of running (though it does show up in the extensions). It seems to be a problem of Safari trying to obtain data from…
Lukas Süsslin
  • 553
  • 1
  • 3
  • 12
7
votes
2 answers

Karabiner-Elements map a key to a combination keys

I'm new to Karabiner. As I understand it this program can change the keyboard mapping. I understand and able to use the "Simple modification" "From key" "To key". But If I want to remap my Home button to CTRL+LEFT_ARROW how do I do that? Currently…
RonPringadi
  • 1,294
  • 1
  • 19
  • 44
7
votes
1 answer

How to use an older version of Xamarin.iOS with Visual Studio Mac?

Hi i mistakenly upgraded Visual Studio for Mac to 8.5.2 (build 13) which has Xamarin.iOS Version: 13.16.0.13 (Visual Studio Community). Turns out this doesn't work with XCode 11.3.1 and needs XCode 11.4, which means I will need to upgrade the OS…
7
votes
1 answer

What could cause a colored mac app icon to be displayed as grayscale?

Note: MCVE at the end I updated the AppIcon and Document icon for my mac app. The icons have changed but they also show as grayscale. The sources files (PNGs) are colored. The icons appear colored inside Xcode but in context (AppIcon in the dock and…
Indiana Kernick
  • 5,041
  • 2
  • 20
  • 50
7
votes
1 answer

Git hooks: '.git/hooks/pre-commit': Operation not permitted

This is all on OS X Mojave. I’m trying to block myself from mistakenly making commits to the master branch, because that is a thing I do a little too often, using the pre-commit Git hook from this SO answer, changed slightly because I use bash…
Eric A. Meyer
  • 920
  • 6
  • 20
7
votes
5 answers

mysql2: Library not loaded: /usr/local/opt/openssl/lib/libssl.1.0.0.dylib after homebrew update

After I upgraded mac OS Mojave from v10.14.0 to v10.14.2 and all the packages installed with Homebrew I started getting the following error when I run bin/rails…
Hirurg103
  • 4,783
  • 2
  • 34
  • 50
7
votes
1 answer

Does use of C++17 std::filesystem REQUIRE MacOS 10.15? (Xcode 11.1)

Using Xcode 11.1, building on MacOS 10.14.6 (Mojave), the following lines: #include typedef std::filesystem::path my_path; ...generate this compiler error: 'path' is unavailable: introduced in macOS 10.15 Does this mean I can't build…
SMGreenfield
  • 1,680
  • 19
  • 35