CocoaPods sample: Specify deployment target in the Podfile
This commit is contained in:
committed by
Ilya Matveev
parent
7f147283c1
commit
6a49a29263
@@ -1,2 +1,8 @@
|
|||||||
ios-app/Pods
|
ios-app/Pods
|
||||||
kotlin-library/kotlin_library.podspec
|
Podfile.lock
|
||||||
|
kotlin-library/kotlin_library.podspec
|
||||||
|
ios-app/ios-app.xcodeproj/xcuserdata
|
||||||
|
ios-app/ios-app.xcworkspace/xcuserdata
|
||||||
|
ios-app/ios-app.xcodeproj/project.xcworkspace/xcuserdata
|
||||||
|
ios-app/ios-app.xcworkspace/contents.xcworkspacedata
|
||||||
|
ios-app/ios-app.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
|
||||||
@@ -16,7 +16,7 @@ given URL.
|
|||||||
Kotlin/Native library will be generated.
|
Kotlin/Native library will be generated.
|
||||||
|
|
||||||
3. Navigate to the [ios-app](ios-app) directory and install the dependencies. The generated
|
3. Navigate to the [ios-app](ios-app) directory and install the dependencies. The generated
|
||||||
podspec is already added in the Podfile, so just run
|
podspec is already added to the Podfile, so just run
|
||||||
```
|
```
|
||||||
pod install
|
pod install
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
# Either use_frameworks! or use_modular_headers! must be specified.
|
# Either use_frameworks! or use_modular_headers! must be specified.
|
||||||
use_frameworks!
|
use_frameworks!
|
||||||
|
|
||||||
|
platform :ios, '9.0'
|
||||||
|
|
||||||
target 'ios-app' do
|
target 'ios-app' do
|
||||||
pod 'kotlin_library', :path => '../kotlin-library'
|
pod 'kotlin_library', :path => '../kotlin-library'
|
||||||
end
|
end
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
PODS:
|
|
||||||
- AFNetworking (3.2.1):
|
|
||||||
- AFNetworking/NSURLSession (= 3.2.1)
|
|
||||||
- AFNetworking/Reachability (= 3.2.1)
|
|
||||||
- AFNetworking/Security (= 3.2.1)
|
|
||||||
- AFNetworking/Serialization (= 3.2.1)
|
|
||||||
- AFNetworking/UIKit (= 3.2.1)
|
|
||||||
- AFNetworking/NSURLSession (3.2.1):
|
|
||||||
- AFNetworking/Reachability
|
|
||||||
- AFNetworking/Security
|
|
||||||
- AFNetworking/Serialization
|
|
||||||
- AFNetworking/Reachability (3.2.1)
|
|
||||||
- AFNetworking/Security (3.2.1)
|
|
||||||
- AFNetworking/Serialization (3.2.1)
|
|
||||||
- AFNetworking/UIKit (3.2.1):
|
|
||||||
- AFNetworking/NSURLSession
|
|
||||||
- kotlin_library (1.0):
|
|
||||||
- AFNetworking (~> 3.2.0)
|
|
||||||
|
|
||||||
DEPENDENCIES:
|
|
||||||
- kotlin_library (from `../kotlin-library`)
|
|
||||||
|
|
||||||
SPEC REPOS:
|
|
||||||
https://github.com/cocoapods/specs.git:
|
|
||||||
- AFNetworking
|
|
||||||
|
|
||||||
EXTERNAL SOURCES:
|
|
||||||
kotlin_library:
|
|
||||||
:path: "../kotlin-library"
|
|
||||||
|
|
||||||
SPEC CHECKSUMS:
|
|
||||||
AFNetworking: b6f891fdfaed196b46c7a83cf209e09697b94057
|
|
||||||
kotlin_library: 8f1a944f60ef52dc0300d95269701846baaf153f
|
|
||||||
|
|
||||||
PODFILE CHECKSUM: 6d9fe10c2c0a5a7ce332795392e81cfa991627a6
|
|
||||||
|
|
||||||
COCOAPODS: 1.6.1
|
|
||||||
BIN
Binary file not shown.
-14
@@ -1,14 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>SchemeUserState</key>
|
|
||||||
<dict>
|
|
||||||
<key>ios-app.xcscheme_^#shared#^_</key>
|
|
||||||
<dict>
|
|
||||||
<key>orderHint</key>
|
|
||||||
<integer>0</integer>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<Workspace
|
|
||||||
version = "1.0">
|
|
||||||
<FileRef
|
|
||||||
location = "group:ios-app.xcodeproj">
|
|
||||||
</FileRef>
|
|
||||||
<FileRef
|
|
||||||
location = "group:Pods/Pods.xcodeproj">
|
|
||||||
</FileRef>
|
|
||||||
</Workspace>
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>IDEDidComputeMac32BitWarning</key>
|
|
||||||
<true/>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
||||||
BIN
Binary file not shown.
Reference in New Issue
Block a user