Skip to content

Commit

Permalink
Fixed the Podfile and added some Developer hints
Browse files Browse the repository at this point in the history
  • Loading branch information
dhermanns committed Nov 30, 2023
1 parent ab4ff3f commit fcfea87
Show file tree
Hide file tree
Showing 5 changed files with 110 additions and 18 deletions.
21 changes: 15 additions & 6 deletions Podfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
# platform :ios, '14.7'

target 'nightguard' do
platform :ios, '12.4'
platform :ios, '14.7'

# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
Expand All @@ -26,21 +26,30 @@ target 'nightguard' do
end

target 'nightguard WatchKit App' do
platform :watchos, '4.3'
platform :watchos, '9.1'

# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!

# Pods for nightguard WatchKit App

end

target 'nightguard WatchKit Extension' do
platform :watchos, '4.3'
target 'nightguard Widget Extension' do
platform :ios, '16.0'

# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!

# Pods for nightguard WatchKit Extension

end

target 'nightguard ComplicationExtension' do
platform :watchos, '9.1'

# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!

# Pods for nightguard WatchKit App

end
4 changes: 2 additions & 2 deletions Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ SPEC CHECKSUMS:
Eureka: e6d720290c56bb23333ad1a0e020b2a98a0e9a43
XLActionController: 24140d835ab9e260270711afebc5efabebe9d392

PODFILE CHECKSUM: 1c26e83c4e68aaeb4d532a440a7a96138b0118a1
PODFILE CHECKSUM: dc0d10611d5c8069733cc7799527d08999ed32c2

COCOAPODS: 1.10.1
COCOAPODS: 1.12.0
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,15 @@ http://youtu.be/CEcqNyyv_kA

# Developer Hints

First install cocoapods and do a
```
pod install
```
afterwards.

Then simply open the Nightguard folder "nightguard" in xcode.
If no scheme "nightguard" is existing, select "new Scheme" from the "Product|Scheme" Menu.

I had to modify the Eureka SliderRow. If you would like to compile the project of your own, you will have to modify
the SliderRow in the following way:

Expand All @@ -53,6 +62,8 @@ public final class SliderRow: Row<SliderCell>, RowType {
}
```

Now you should be able to launch the app in the simulator. Happy Coding!

# License

[agpl-3]: http://www.gnu.org/licenses/agpl-3.0.txt
Expand Down
Loading

0 comments on commit fcfea87

Please sign in to comment.