Package com.jetbrains.cidr.xcode.frameworks

Examples of com.jetbrains.cidr.xcode.frameworks.AppleSdk


  private static boolean isAvailableForPlatform(@NotNull final AppCodeRunConfiguration config) {
    return ApplicationManager.getApplication().runReadAction(new Computable<Boolean>() {
      @Override
      public Boolean compute() {
        XCBuildConfiguration configuration = config.getConfiguration();
        AppleSdk sdk = configuration == null ? null : configuration.getBaseSdk();
        return sdk != null && sdk.getPlatform().isIOS();
      }
    });
  }
View Full Code Here

TOP

Related Classes of com.jetbrains.cidr.xcode.frameworks.AppleSdk

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.