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
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,11 @@ jobs:
TEST_CUV_PROJECT_URL: ${{ vars.TEST_CUV_PROJECT_URL }}
TEST_DV_PROJECT_URL: ${{ vars.TEST_DV_PROJECT_URL }}
run: |
flutter config --enable-swift-package-manager
xcrun simctl erase "iPhone 16"
xcrun simctl boot "iPhone 16"
xcrun simctl bootstatus "iPhone 16" -b
SIMULATOR_NAME="$(xcrun simctl list devices | grep "(Booted)" | grep -E -o -i "([0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12})")"
flutter clean
flutter pub get
./run-tests.sh $SIMULATOR_NAME
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,7 @@ This release prepares the API for a future stable version by simplifying and cle
## 0.7.1

* Prevent fatal not initialized lateinit variable exeption

## 0.8.0

* Update Cocoapods support.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,14 @@ Add flutter_miracl_sdk to `pubspec.yaml`:

```yaml
dependencies:
flutter_miracl_sdk: ^0.7.0
flutter_miracl_sdk: ^0.8.0
```

If your application uses Cocoapods as an iOS dependency manager,
add this row to the beggining of your `Podfile`:

```ruby
source `https://github.com/miracl/cocoapods-specs`
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.7.0"
version: "0.8.0"
flutter_test:
dependency: "direct dev"
description: flutter
Expand Down
2 changes: 1 addition & 1 deletion integration_test_app/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.7.0"
version: "0.8.0"
flutter_test:
dependency: "direct dev"
description: flutter
Expand Down
7 changes: 5 additions & 2 deletions integration_test_app/run-tests.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
flutter test integration_test/compatiblity_test.dart -d $1 -v \
flutter test integration_test/compatiblity_test.dart \
-d $1 \
--dart-define=TEST_CUV_SERVICE_ACCOUNT_TOKEN="$TEST_CUV_SERVICE_ACCOUNT_TOKEN" \
--dart-define=TEST_USER_ID="$TEST_USER_ID" \
--dart-define=TEST_DV_PROJECT_ID="$TEST_DV_PROJECT_ID" \
--dart-define=TEST_CUV_PROJECT_ID="$TEST_CUV_PROJECT_ID" \
--dart-define=TEST_CUV_PROJECT_URL="$TEST_CUV_PROJECT_URL" \
--dart-define=TEST_DV_PROJECT_URL="$TEST_DV_PROJECT_URL"
--dart-define=TEST_DV_PROJECT_URL="$TEST_DV_PROJECT_URL" \
--timeout 30m \
--reporter expanded
44 changes: 0 additions & 44 deletions ios/MIRACLTrust.xcframework/Info.plist

This file was deleted.

Loading