C# Класс Google.IOSResolver.Pod

Reference to a Cocoapod.
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
bitcodeEnabled bool
minTargetSdk string
name string
version string

Открытые методы

Метод Описание
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.

Описание методов

BucketByMinSdkVersion() публичный статический Метод

public static BucketByMinSdkVersion ( IEnumerable pods ) : List>.SortedDictionary
pods IEnumerable
Результат List>.SortedDictionary

MinTargetSdkToVersion() публичный Метод

Convert min target SDK to an integer in the form (major * 10) + minor.
public MinTargetSdkToVersion ( ) : int
Результат int

Pod() публичный Метод

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.
Результат GooglePlayServices

Описание свойств

bitcodeEnabled публичное свойство

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
Результат bool

minTargetSdk публичное свойство

Minimum target SDK revision required by this pod. In the form major.minor
public string minTargetSdk
Результат string

name публичное свойство

Name of the pod.
public string name
Результат string

version публичное свойство

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
Результат string