mpclarkson / StravaSwift

A Swift wrapper for the Strava API v3
MIT License
102 stars 45 forks source link

Uploads Part 2 #41

Closed ehmjaysee closed 2 years ago

ehmjaysee commented 2 years ago

In order to test the upload capability I needed to make some general updates to the example project so I could build and run the project with modern tools.

Summary of changes: 1) Compatible with Xcode 13 and iOS 13. This required minor changes to a couple files under /Sources 2) Updated the storyboard to be compatible with newer iOS 3) Added ActivityDetail view controller to demonstrate the API to request a single activity 4) Added UI controls to trigger a file upload and monitor the progress (see AthleteViewController) 5) Remove Pods/* and Podfile.lock from the example folder; this forces the user to run pod install 6) Modify gitignore to prevent those files from getting back into the project 7) Fixed Travis builds. Travis runs in my private fork.

jeffbailey commented 2 years ago

Thanks for making these updates. I'm actually starting to develop with ahead of the PR approval.

lludo commented 2 years ago

Thank you for making these changes!