Skip to content

Commit

Permalink
[#2] Add KMM pods
Browse files Browse the repository at this point in the history
  • Loading branch information
blyscuit committed Sep 16, 2022
1 parent 7327f42 commit 7aa4ee8
Show file tree
Hide file tree
Showing 7 changed files with 3,735 additions and 3,502 deletions.
2 changes: 1 addition & 1 deletion iosApp/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ target 'Survey' do

# KMM
platform :ios, '14.0'
# pod 'Shared', :path => '../shared'
pod 'Shared', :path => '../shared'

target 'SurveyTests' do
inherit! :search_paths
Expand Down
7 changes: 6 additions & 1 deletion iosApp/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ PODS:
- R.swift.Library (~> 5.3.0)
- R.swift.Library (5.3.0)
- Resolver (1.5.0)
- Shared (1.0)
- SnapKit (5.6.0)
- Sourcery (1.8.0):
- Sourcery/CLI-Only (= 1.8.0)
Expand All @@ -73,6 +74,7 @@ DEPENDENCIES:
- Quick
- R.swift
- Resolver
- Shared (from `../shared`)
- SnapKit
- Sourcery (= 1.8.0)
- SwiftFormat/CLI
Expand Down Expand Up @@ -109,6 +111,8 @@ EXTERNAL SOURCES:
NimbleExtension:
:branch: master
:git: https://github.com/nimblehq/NimbleExtension
Shared:
:path: "../shared"

CHECKOUT OPTIONS:
NimbleExtension:
Expand All @@ -135,12 +139,13 @@ SPEC CHECKSUMS:
R.swift: ec98ff71c4ab2f6fd01dd077e5afd15e63a4834c
R.swift.Library: 0fc583cb55a99e28901299cc451614cad1161962
Resolver: 68984624572763018fd8ec7b8e3e8df0e3b6bba5
Shared: 0c72e1f7649dc66d4e93f4d61ea6caa582c8de92
SnapKit: e01d52ebb8ddbc333eefe2132acf85c8227d9c25
Sourcery: 6f5fe49b82b7e02e8c65560cbd52e1be67a1af2e
SwiftFormat: 2402d29b26746f169cce5454d5af88314cbb2e35
SwiftLint: 32ee33ded0636d0905ef6911b2b67bbaeeedafa5
Wormholy: 3252bc3e55a1847ef9a0976c1377bd77bf3635fa

PODFILE CHECKSUM: f44d798c8362592b754741187dd9fa83f9372cb9
PODFILE CHECKSUM: ac97fa8a6f9a5d954462b1ad5ee3f0303aa2702c

COCOAPODS: 1.11.3
7 changes: 6 additions & 1 deletion iosApp/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7,208 changes: 3,713 additions & 3,495 deletions iosApp/Pods/Pods.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion iosApp/Survey/Sources/Application/IOSApp.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Copyright © 2022 Nimble. All rights reserved.
//

//import Shared
import Shared
import SwiftUI

@main
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
// Copyright © 2022 Nimble. All rights reserved.
//

//import Shared
import Shared
import SwiftUI

struct ContentView: View {
// let greet = Greeting().greeting()
let greet = Greeting().greeting()

var body: some View {
Text("greet")
Text(greet)
}
}

Expand Down

0 comments on commit 7aa4ee8

Please sign in to comment.