Download Latest Version 0.16.1.tar.gz (527.5 kB)
Email in envelope

Get an email when there's a new version of NextLevel

Home / 0.9.0
Name Modified Size InfoDownloads / Week
Parent folder
0.9.0.tar.gz 2017-11-14 438.8 kB
0.9.0.zip 2017-11-14 609.3 kB
README.md 2017-11-14 742 Bytes
Totals: 3 Items   1.0 MB 0

The ARKit mode is in beta, so it is not compiled by default without the inclusion of the Swift compiler flag USE_ARKIT. Apple will reject apps that link ARKit and do not use it. To try it out, setup the AppDelegate to load the MixedRealityViewController class and include the xcode build settings flag.

If you use Cocoapods, you can include -DUSE_ARKIT with the following podfile addition or by adding it to your Xcode build settings.

  installer.pods_project.targets.each do |target|
    # setup NextLevel for ARKit use
    if target.name == 'NextLevel'
      target.build_configurations.each do |config|
        config.build_settings['OTHER_SWIFT_FLAGS'] = '-DUSE_ARKIT'
      end
    end
  end
Source: README.md, updated 2017-11-14