Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The _"non-endorsed"_ status means that the plugin is not endorsed by the origina

| Package name | Watch | Watch emulator | TV | TV emulator | Remarks |
|-|:-:|:-:|:-:|:-:|-|
| [**battery**](packages/battery) | ✔️ | ✔️ | ❌ | ❌ |
| [**battery_tizen**](packages/battery) | ✔️ | ✔️ | ❌ | ❌ | No battery |
| [**integration_test_tizen**](packages/integration_test) | ✔️ | ✔️ | ✔️ | ✔️ |
| [**path_provider_tizen**](packages/path_provider) | ⚠️ | ⚠️ | ⚠️ | ⚠️ | No external storage |
| [**sensors_tizen**](packages/sensors) | ✔️ | ✔️ | ❌ | ❌ | No hardware |
Expand Down
4 changes: 4 additions & 0 deletions packages/battery/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.0

* Initial release

## 1.0.1

* Port to use platform interface
8 changes: 4 additions & 4 deletions packages/battery/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ This package is not an _endorsed_ implementation of `battery`. Therefore, you ha

```yaml
dependencies:
battery: ^1.0.7
battery_tizen: ^1.0.0
battery: ^1.0.11
battery_tizen: ^1.0.1
```

Then you can import `battery` in your Dart code:
Expand All @@ -22,6 +22,6 @@ For detailed usage, see https://github.com/flutter/plugins/tree/master/packages/

## Supported devices

This plugin is available on these types of devices:
This plugin is supported on these types of devices:

- Galaxy Watch (running Tizen 5.5 or later)
- Galaxy Watch (running Tizen 4.0 or later)
6 changes: 3 additions & 3 deletions packages/battery/example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
name: battery_example
description: Demonstrates how to use the battery_tizen plugin.
publish_to: 'none'

dependencies:
flutter:
sdk: flutter
battery: ^1.0.7
battery: ^1.0.11
battery_tizen:
path: ../

dev_dependencies:
flutter_driver:
sdk: flutter
integration_test: ^0.9.2
integration_test: ^1.0.1
integration_test_tizen:
path: ../../integration_test/
pedantic: ^1.8.0

flutter:
uses-material-design: true
Expand Down
3 changes: 2 additions & 1 deletion packages/battery/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: battery_tizen
description: Flutter plugin for accessing information about the battery state
(full, charging, discharging) on Tizen.
version: 1.0.0
version: 1.0.1
homepage: https://github.com/flutter-tizen/plugins

flutter:
Expand All @@ -14,6 +14,7 @@ flutter:
dependencies:
flutter:
sdk: flutter
battery_platform_interface: ^1.0.0

dev_dependencies:
flutter_test:
Expand Down