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
6 changes: 6 additions & 0 deletions packages/shared_preferences/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.0.0

* Initial release

## 1.0.1

* Update shared_preferences to the latest (0.5.12+4)
* Update platform interface to the latest (1.0.4)
* Migrate to Tizen 4.0
4 changes: 2 additions & 2 deletions packages/shared_preferences/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 `shared_preferences`. Theref

```yaml
dependencies:
shared_preferences: ^0.5.12
shared_preferences_tizen: ^1.0.0
shared_preferences: ^0.5.12+4
shared_preferences_tizen: ^1.0.1
```

Then you can import `shared_preferences` in your Dart code:
Expand Down
7 changes: 3 additions & 4 deletions packages/shared_preferences/example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
name: shared_preferences_tizen_example
description: Demonstrates how to use the shared_preferences_tizen plugin.
publish_to: "none"
publish_to: 'none'

dependencies:
flutter:
sdk: flutter
shared_preferences: ^0.5.12
shared_preferences: ^0.5.12+4
shared_preferences_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
2 changes: 1 addition & 1 deletion packages/shared_preferences/example/tizen/Runner.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>tizen60</TargetFramework>
<TargetFramework>tizen40</TargetFramework>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
Expand Down
5 changes: 3 additions & 2 deletions packages/shared_preferences/example/tizen/tizen-manifest.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="org.tizen.shared_preferences_tizen_example" version="1.0.0" api-version="5.5" xmlns="http://tizen.org/ns/packages">
<manifest package="org.tizen.shared_preferences_tizen_example" version="1.0.0" api-version="4.0" xmlns="http://tizen.org/ns/packages">
<profile name="common"/>
<ui-application appid="org.tizen.shared_preferences_tizen_example" exec="Runner.dll" type="dotnet" multiple="false" taskmanage="true" nodisplay="false" api-version="6" launch_mode="single">
<ui-application appid="org.tizen.shared_preferences_tizen_example" exec="Runner.dll" type="dotnet" multiple="false" taskmanage="true" nodisplay="false" api-version="4" launch_mode="single">
<label>shared_preferences_tizen_example</label>
<icon>ic_launcher.png</icon>
<metadata key="http://tizen.org/metadata/prefer_dotnet_aot" value="true"/>
<metadata key="http://tizen.org/metadata/direct-launch" value="yes"/>
</ui-application>
<feature name="http://tizen.org/feature/screen.size.all"/>
</manifest>
5 changes: 2 additions & 3 deletions packages/shared_preferences/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: shared_preferences_tizen
description: Tizen implementation of the shared_preferences plugin
version: 1.0.0
version: 1.0.1
homepage: https://github.com/flutter-tizen/plugins

flutter:
Expand All @@ -13,13 +13,12 @@ flutter:
dependencies:
flutter:
sdk: flutter
shared_preferences_platform_interface: 1.0.0
shared_preferences_platform_interface: ^1.0.4
ffi: ^0.1.3

dev_dependencies:
flutter_test:
sdk: flutter
pedantic: ^1.8.0

environment:
sdk: ">=2.2.2 <3.0.0"
Expand Down