alikaragoz / PlatformLookup

A simple tool to extract the correct platform

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bitrise Support

Being able to lift platform information in bitrise in order to simplify maintenance.

  • PLATFORM_LOOKUP_DEVICE_MODEL : Device model like iPad Air (3rd generation)
  • PLATFORM_LOOKUP_OS_VERSION : Runtime os version 13.3
  • PLATFORM_LOOKUP_DEVICE_UDID : Simulator device UDID 97FF12DC-7204-4066-A95E-A2B0E6FF4F62
  • PLATFORM_LOOKUP_PLATFORM : Platform parameter for xcodebuild iOS Simulator,name=iPad Air (3rd generation),OS=13.3
  • PLATFORM_LOOKUP_SIMULATOR_NAME : Simulator name iOS Simulator

It can use the same parameter as Cli.

swift sh <(curl https://raw.githubusercontent.com/mackoj/SimulatorControl/master/bitrisePlatformLookup.swift) iPhone

Cli πŸ“Ÿ

You can use the cli to find the platform you need by passing the device name or juste the device family you can optionnaly set the os version you are looking for.

./cli iphone
iOS Simulator,name=iPhone 11 Pro Max,OS=13.3
./cli "iPad Air (3rd generation)"
iOS Simulator,name=iPad Air (3rd generation),OS=13.3
./cli watch
watchOS Simulator,name=Apple Watch Series 5 - 44mm,OS=6.1.1
./cli tv -v 13.3
tvOS Simulator,name=Apple TV 4K (at 1080p),OS=13.3

PlatformLookup πŸ”Ž

This package help to find/filter/sort all devices and runtimes available in xcrun simctl.

#!/usr/bin/swift sh

import Foundation
import PlatformLookup  // @mackoj

func findDevicePlatform(_ args: [String]) throws {
  let platform = try PlatformLookup.findADeviceForLastOSVersion(.iPhone)
  let platformString = try PlatformLookup.format(
    platform,
    deviceFamily: .iPhone
  )
  print(platformString)
  exit(EXIT_SUCCESS)
}

do { try findDevicePlatform(CommandLine.arguments) }
catch {
  print(error.localizedDescription)
  exit(EXIT_FAILURE)
}

Shell 🐚

A Simple help to perform a shell command and pipe it's output.

shell("xcrun simctl list -j")

SimulatorControl πŸ“²

This package is a representation of xcrun simctl devices and runtimes it act as a model here.

xcrun simctl list -j > simctl_device_list.json
let simctl = try JSONDecoder().decode(SimulatorControl.self, from: SimulatorControlJSONData)

About

A simple tool to extract the correct platform


Languages

Language:Swift 89.5%Language:Shell 8.6%Language:Makefile 1.8%