Skip to content

sudhanshukumar275/Clima

 
 

Repository files navigation

Clima

Learn to make iOS Apps with The App Brewery 📱 | Project Stub | (Swift 4.0/Xcode 9) - Clima App

Beginner: Download the starter project files as .zip and extract the files to your desktop.

Pro: Git clone to your Xcode projects folder.

Finished App

Finished App

Fix for Cocoapods v1.0.1 and below

post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['SWIFT_VERSION'] = '3.0'
      config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '10.10'
    end
  end
end

Fix for App Transport Security Override

	<key>NSAppTransportSecurity</key>
	<dict>
		<key>NSExceptionDomains</key>
		<dict>
			<key>openweathermap.org</key>
			<dict>
				<key>NSIncludesSubdomains</key>
				<true/>
				<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
				<true/>
			</dict>
		</dict>
	</dict>

WeatherApp Report https://docs.google.com/document/d/14teCpXz7l5549J7A6hAWj24ohr3VurbJwN5K9SFUlXg/edit?usp=sharing

Releases

No releases published

Packages

No packages published

Languages

  • Makefile 72.5%
  • Swift 14.5%
  • Objective-C 12.7%
  • Ruby 0.3%