Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
flutter_wakelock
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
creativecreatorormaybenot
2020-10-05 17:47:35 +0000
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
GitHub
2020-10-05 17:47:35 +0000
Commit
99305b825aba3d6d6dec122b7f2a5b838e5c53be
99305b82
1 parent
984af3a0
Fix iOS build issue (#47)
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
38 additions
and
3 deletions
wakelock/CHANGELOG.md
wakelock/pubspec.yaml
wakelock_web/CHANGELOG.md
wakelock_web/ios/wakelock_web.podspec
wakelock_web/pubspec.yaml
wakelock/CHANGELOG.md
View file @
99305b8
## 0.2.0+1
*
Fix iOS build issue by bumping the
`wakelock_web`
dependency.
## 0.2.0
*
Added web support.
...
...
wakelock/pubspec.yaml
View file @
99305b8
...
...
@@ -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.
v
ersion: 0.2.0
v
ersion: 0.2.0
+1
h
omepage: https://github.com/creativecreatorormaybenot/wakelock/tree/master/wakelock
e
nvironment:
...
...
@@ -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
d
ev_dependencies:
flutter_test:
...
...
wakelock_web/CHANGELOG.md
View file @
99305b8
## 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.
...
...
wakelock_web/ios/wakelock_web.podspec
0 → 100644
View file @
99305b8
#
# 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
...
...
wakelock_web/pubspec.yaml
View file @
99305b8
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
:
...
...
Please
register
or
login
to post a comment