creativecreatorormaybenot
Committed by GitHub

Fix iOS build issue (#47)

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