Showing
5 changed files
with
38 additions
and
3 deletions
| @@ -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: |
wakelock_web/ios/wakelock_web.podspec
0 → 100644
| 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: |
-
Please register or login to post a comment