-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[shared_preferences] Switch to new analysis options (#287)
* [shared_preferences] Switch to new analysis options * Resolve analyzer warnings
- Loading branch information
Showing
12 changed files
with
101 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,30 @@ | ||
## 1.0.0 | ||
|
||
* Initial release | ||
* Initial release. | ||
|
||
## 1.0.1 | ||
|
||
* Update shared_preferences to 0.5.12+4 | ||
* Update platform interface to 1.0.4 | ||
* Migrate to Tizen 4.0 | ||
* Update shared_preferences to 0.5.12+4. | ||
* Update shared_preferences_platform_interface to 1.0.4. | ||
* Migrate to Tizen 4.0. | ||
|
||
## 2.0.0 | ||
|
||
* Update Dart and Flutter SDK constraints | ||
* Update Flutter copyright information | ||
* Update example and integration_test | ||
* Update platform interface to 2.0.0 | ||
* Organize dev_dependencies | ||
* Migrate to ffi 1.0.0 | ||
* Migrate to null safety | ||
* Remove unused `PreferenceIsExisiting` from the implementation | ||
* Update Dart and Flutter SDK constraints. | ||
* Update Flutter copyright information. | ||
* Update the example app and integration_test. | ||
* Update shared_preferences_platform_interface to 2.0.0. | ||
* Organize dev_dependencies. | ||
* Migrate to ffi 1.0.0. | ||
* Migrate to null safety. | ||
* Remove unused `PreferenceIsExisiting` from the implementation. | ||
|
||
## 2.0.1 | ||
|
||
* Fix memory leaks | ||
* Fix memory leaks. | ||
|
||
## 2.0.2 | ||
|
||
* Update shared_preferences to 2.0.9. | ||
* Switch to new analysis options. | ||
* Update integration_test. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 0 additions & 2 deletions
2
packages/shared_preferences/example/test_driver/integration_test.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
// @dart=2.9 | ||
|
||
import 'package:integration_test/integration_test_driver.dart'; | ||
|
||
Future<void> main() => integrationDriver(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<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="4" 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"> | ||
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters