Skip to content

Commit 4adf47f

Browse files
authored
[integration_test] Use the stable version of integration_test (#21)
1 parent 2a1c886 commit 4adf47f

File tree

7 files changed

+15
-11
lines changed

7 files changed

+15
-11
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
## 1.0.0
22

33
* Initial release
4+
5+
## 1.0.1
6+
7+
* Update integration_test to the latest (1.0.1)
8+
* Migrate to Tizen 4.0

packages/integration_test/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ This package is not an _endorsed_ implementation of `integration_test`. Therefor
88

99
```yaml
1010
dependencies:
11-
integration_test: ^0.9.2
12-
integration_test_tizen: ^1.0.0
11+
integration_test: ^1.0.1
12+
integration_test_tizen: ^1.0.1
1313
```
1414
1515
Then you can import `integration_test` in your Dart code:

packages/integration_test/example/pubspec.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,10 @@ dev_dependencies:
1212
sdk: flutter
1313
flutter_driver:
1414
sdk: flutter
15-
integration_test: ^0.9.2
15+
integration_test: ^1.0.1
1616
integration_test_tizen:
1717
path: ../
1818
test: any
19-
pedantic: ^1.8.0
2019

2120
flutter:
2221
uses-material-design: true

packages/integration_test/example/tizen/Runner.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>tizen60</TargetFramework>
5+
<TargetFramework>tizen40</TargetFramework>
66
</PropertyGroup>
77

88
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest package="org.tizen.integration_test_example" version="1.0.0" api-version="5.5" xmlns="http://tizen.org/ns/packages">
2+
<manifest package="org.tizen.integration_test_example" version="1.0.0" api-version="4.0" xmlns="http://tizen.org/ns/packages">
33
<profile name="common"/>
4-
<ui-application appid="org.tizen.integration_test_example" exec="Runner.dll" type="dotnet" multiple="false" taskmanage="true" nodisplay="false" api-version="6" launch_mode="single">
4+
<ui-application appid="org.tizen.integration_test_example" exec="Runner.dll" type="dotnet" multiple="false" taskmanage="true" nodisplay="false" api-version="4" launch_mode="single">
55
<label>integration_test_example</label>
66
<icon>ic_launcher.png</icon>
77
<metadata key="http://tizen.org/metadata/prefer_dotnet_aot" value="true"/>
8+
<metadata key="http://tizen.org/metadata/direct-launch" value="yes"/>
89
</ui-application>
910
<feature name="http://tizen.org/feature/screen.size.all"/>
1011
</manifest>

packages/integration_test/pubspec.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: integration_test_tizen
22
description: Tizen implementation of the integration_test plugin
3-
version: 1.0.0
3+
version: 1.0.1
44
homepage: https://github.com/flutter-tizen/plugins
55

66
flutter:
@@ -19,8 +19,7 @@ dependencies:
1919
sdk: flutter
2020

2121
dev_dependencies:
22-
integration_test: ^0.9.2
23-
pedantic: ^1.8.0
22+
integration_test: ^1.0.1
2423

2524
environment:
2625
sdk: ">=2.2.2 <3.0.0"

packages/integration_test/tizen/project_def.prop

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
APPNAME = integration_test_plugin
55
type = sharedLib
6-
profile = common-5.5
6+
profile = common-4.0
77

88
# Source files
99
USER_SRCS += src/integration_test_plugin.cc

0 commit comments

Comments
 (0)