-
-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
* Fix SwiftPM support for iOS Including the iOS specific UI using the `#if os(iOS) ... #else ... #endif` doesn’t work as the manifest is compiled for the host platform (see https://forums.swift.org/t/exclude-directories-per-platform-not-working/29418). For now only iOS is supported with SwiftPM. * Update podspec for iOS and macOS support CocoaPods can now be used to integrate `LifetimeTracker` into iOS and macOS apps. The iOS specific UI is excluded for macOS. At some point there might be a macOS specific dashboard UI #18. * Update examples to use latest podspec
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?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> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
platform :ios, '8.0' | ||
|
||
use_frameworks! | ||
|
||
target 'ExampleObjC' do | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.