C# Class Google.IOSResolver.Pod

Reference to a Cocoapod.
Mostrar archivo Open project: googlesamples/unity-jar-resolver

Public Properties

Property Type Description
bitcodeEnabled bool
minTargetSdk string
name string
version string

Public Methods

Method Description
BucketByMinSdkVersion ( IEnumerable pods ) : List>.SortedDictionary
MinTargetSdkToVersion ( ) : int

Convert min target SDK to an integer in the form (major * 10) + minor.

Pod ( string name, string version, bool bitcodeEnabled, string minTargetSdk ) : GooglePlayServices

Create a pod reference.

Method Details

BucketByMinSdkVersion() public static method

public static BucketByMinSdkVersion ( IEnumerable pods ) : List>.SortedDictionary
pods IEnumerable
return List>.SortedDictionary

MinTargetSdkToVersion() public method

Convert min target SDK to an integer in the form (major * 10) + minor.
public MinTargetSdkToVersion ( ) : int
return int

Pod() public method

Create a pod reference.
public Pod ( string name, string version, bool bitcodeEnabled, string minTargetSdk ) : GooglePlayServices
name string Name of the pod.
version string Version of the pod.
bitcodeEnabled bool Whether this pod was compiled with /// bitcode.
minTargetSdk string Minimum target SDK revision required by /// this pod.
return GooglePlayServices

Property Details

bitcodeEnabled public_oe property

Whether this pod has been compiled with bitcode enabled. If any pods are present which have bitcode disabled, bitcode is disabled for an entire project.
public bool bitcodeEnabled
return bool

minTargetSdk public_oe property

Minimum target SDK revision required by this pod. In the form major.minor
public string minTargetSdk
return string

name public_oe property

Name of the pod.
public string name
return string

version public_oe property

Version specification string. If it ends with "+" the specified version up to the next major version is selected. If "LATEST", null or empty this pulls the latest revision. A version number "1.2.3" selects a specific version number.
public string version
return string