Skip to content

[integration_test] Use the stable version of integration_test #21

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

Merged
merged 1 commit into from
Jan 27, 2021
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
5 changes: 5 additions & 0 deletions packages/integration_test/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.0.0

* Initial release

## 1.0.1

* Update integration_test to the latest (1.0.1)
* Migrate to Tizen 4.0
4 changes: 2 additions & 2 deletions packages/integration_test/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 `integration_test`. Therefor

```yaml
dependencies:
integration_test: ^0.9.2
integration_test_tizen: ^1.0.0
integration_test: ^1.0.1
integration_test_tizen: ^1.0.1
```

Then you can import `integration_test` in your Dart code:
Expand Down
3 changes: 1 addition & 2 deletions packages/integration_test/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@ dev_dependencies:
sdk: flutter
flutter_driver:
sdk: flutter
integration_test: ^0.9.2
integration_test: ^1.0.1
integration_test_tizen:
path: ../
test: any
pedantic: ^1.8.0

flutter:
uses-material-design: true
Expand Down
2 changes: 1 addition & 1 deletion packages/integration_test/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/integration_test/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.integration_test_example" version="1.0.0" api-version="5.5" xmlns="http://tizen.org/ns/packages">
<manifest package="org.tizen.integration_test_example" version="1.0.0" api-version="4.0" xmlns="http://tizen.org/ns/packages">
<profile name="common"/>
<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">
<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">
<label>integration_test_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/integration_test/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: integration_test_tizen
description: Tizen implementation of the integration_test plugin
version: 1.0.0
version: 1.0.1
homepage: https://github.com/flutter-tizen/plugins

flutter:
Expand All @@ -19,8 +19,7 @@ dependencies:
sdk: flutter

dev_dependencies:
integration_test: ^0.9.2
pedantic: ^1.8.0
integration_test: ^1.0.1

environment:
sdk: ">=2.2.2 <3.0.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/integration_test/tizen/project_def.prop
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

APPNAME = integration_test_plugin
type = sharedLib
profile = common-5.5
profile = common-4.0

# Source files
USER_SRCS += src/integration_test_plugin.cc
Expand Down