creativecreatorormaybenot
Committed by GitHub

Fix iOS build issue (#47)

## 0.2.0+1
* Fix iOS build issue by bumping the `wakelock_web` dependency.
## 0.2.0
* Added web support.
... ...
... ... @@ -2,7 +2,7 @@ name: wakelock
description: >-2
Plugin that allows you to keep the device screen awake, i.e. prevent the screen from sleeping on
Android, iOS, and web.
version: 0.2.0
version: 0.2.0+1
homepage: https://github.com/creativecreatorormaybenot/wakelock/tree/master/wakelock
environment:
... ... @@ -16,7 +16,7 @@ dependencies:
meta: ^1.2.0
wakelock_platform_interface: ^0.1.0
wakelock_web: ^0.1.0
wakelock_web: ^0.1.0+1
dev_dependencies:
flutter_test:
... ...
## 0.1.0+2
* Version increment for automated publishing.
## 0.1.0+1
* Fix "No podspec found" build error on iOS.
## 0.1.0
* Initial release.
... ...
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
# Run `pod lib lint wakelock.podspec' to validate before publishing.
#
Pod::Spec.new do |s|
s.name = 'wakelock_web'
s.version = '0.0.1'
s.summary = 'Stub Podspec'
s.description = <<-DESC
Stub Podspec that makes wakelock_web builds on iOS work.
DESC
s.homepage = 'http://example.com'
s.license = { :file => '../LICENSE' }
s.author = { 'Your Company' => 'email@example.com' }
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.dependency 'Flutter'
s.platform = :ios, '8.0'
# Flutter.framework does not contain a i386 slice.
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
end
... ...
name: wakelock_web
description: Web platform implementation of the wakelock_platform_interface for the wakelock plugin.
version: 0.1.0
version: 0.1.0+2
homepage: https://github.com/creativecreatorormaybenot/wakelock/tree/master/wakelock_web
environment:
... ...