Skip to content

Commit

Permalink
Add support for static framwork option in cocoapods
Browse files Browse the repository at this point in the history
  • Loading branch information
djbe committed Dec 30, 2017
1 parent 5ef5e93 commit ffc018f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions AppwiseCore.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Pod::Spec.new do |s|
}
s.ios.deployment_target = '9.0'
s.swift_version = '4.0'
s.static_framework = true

# files
s.source = {
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ All notable changes to this project will be documented in this file.
### Internal

* Use the recommended way for nav/tabbarcontroller to ask their children for the preferred status bar style/hidden.
* Switched to static_framework for CocoaPods.

## [0.6.1](https://github.com/appwise-labs/AppwiseCore/releases/tag/0.6.1)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
//

import Foundation
import UIKit

final class ConfigurationApplicationService<ConfigType: Config>: NSObject, ApplicationService {
func applicationDidFinishLaunching(_ application: UIApplication) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
//

import Foundation
import UIKit

final class ConfigureMainQueueApplicationService: NSObject, ApplicationService {
func application(_ application: UIApplication, willFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey : Any]? = nil) -> Bool {
Expand Down
1 change: 1 addition & 0 deletions Sources/DeepLink/DeepLinkMatchable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
//

import Foundation
import UIKit

public protocol DeepLinkMatchable: class, NSObjectProtocol {
func dismiss(items: [DeepLinkStackItem], animated: Bool) -> Bool
Expand Down
1 change: 1 addition & 0 deletions Sources/DeepLink/DeepLinker.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
//

import Foundation
import UIKit

public struct DeepLinkStackItem {
public let path: String
Expand Down

0 comments on commit ffc018f

Please sign in to comment.