Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[tizen_app_manager] Update tizen_interop to 0.3.0 #707

Merged
merged 1 commit into from
Jul 22, 2024
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
3 changes: 2 additions & 1 deletion packages/tizen_app_manager/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## NEXT
## 0.2.3

* Update minimum Flutter and Dart version to 3.13 and 3.1.
* Update tizen_interop to 0.3.0.

## 0.2.2

Expand Down
2 changes: 1 addition & 1 deletion packages/tizen_app_manager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ To use this package, add `tizen_app_manager` as a dependency in your `pubspec.ya

```yaml
dependencies:
tizen_app_manager: ^0.2.2
tizen_app_manager: ^0.2.3
```

### Retrieving current app info
Expand Down
2 changes: 1 addition & 1 deletion packages/tizen_app_manager/lib/src/app_context.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import 'dart:ffi';

import 'package:ffi/ffi.dart';
import 'package:flutter/services.dart';
import 'package:tizen_interop/4.0/tizen.dart';
import 'package:tizen_interop/6.0/tizen.dart';

typedef _TerminateAppNative = Int Function(app_context_h);
typedef _TerminateApp = int Function(app_context_h);
Expand Down
4 changes: 2 additions & 2 deletions packages/tizen_app_manager/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: tizen_app_manager
description: Tizen application manager APIs. Used to get app info and app running context on a Tizen device.
homepage: https://github.com/flutter-tizen/plugins
repository: https://github.com/flutter-tizen/plugins/tree/master/packages/tizen_app_manager
version: 0.2.2
version: 0.2.3

environment:
sdk: ">=3.1.0 <4.0.0"
Expand All @@ -12,7 +12,7 @@ dependencies:
ffi: ^2.0.1
flutter:
sdk: flutter
tizen_interop: ^0.2.0
tizen_interop: ^0.3.0

flutter:
plugin:
Expand Down
Loading