Skip to content
Closed
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: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 7.2.0
- customUrl: you can set your own backend url

# 7.1.0
- feat(release): add release flutter plugin workflow (#4)
- feat: init ios herow-sdk (#3)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ dependencies:
herow_plugin_flutter:
git:
url: https://github.com/herowio/herow-plugin-flutter.git
ref: 7.1.0
ref: 7.2.0
```

- Update flutter with `flutter pub get`
Expand Down
6 changes: 3 additions & 3 deletions android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'io.herow.herow_plugin_flutter'
version '7.1.0'
version '7.2.0'

buildscript {
ext.kotlin_version = '1.5.10'
Expand All @@ -25,7 +25,7 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

android {
compileSdkVersion 30
compileSdkVersion 31

sourceSets {
main.java.srcDirs += 'src/main/kotlin'
Expand All @@ -37,5 +37,5 @@ android {

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'io.herow.sdk:detection:7.1.0'
implementation 'io.herow.sdk:detection:7.2.0'
}
2 changes: 1 addition & 1 deletion example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

android {
compileSdkVersion 30
compileSdkVersion 31

sourceSets {
main.java.srcDirs += 'src/main/kotlin'
Expand Down
4 changes: 2 additions & 2 deletions ios/herow_plugin_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'herow_plugin_flutter'
s.version = '7.1.0'
s.version = '7.2.0'
s.summary = 'Herow plugin flutter for herow-sdk'
s.description = <<-DESC
Herow plugin flutter for herow-sdk
Expand All @@ -13,7 +13,7 @@ Herow plugin flutter for herow-sdk
s.license = 'MIT'
s.author = { 'Herow' => 'contact@herow.io' }
s.source = {
:http => "https://github.com/herowio/herow-sdk-ios/releases/download/v7.1.0/herow_sdk_ios.framework.zip",
:http => "https://github.com/herowio/herow-sdk-ios/releases/download/v7.2.0/herow_sdk_ios.framework.zip",
:type => "zip"
}
s.source_files = 'Classes/**/*'
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: herow_plugin_flutter
description: Herow plugin flutter for herow-sdk
version: 7.1.0
version: 7.2.0
repository: https://github.com/herowio/herow-plugin-flutter/tree/main
issue_tracker: https://github.com/herowio/herow-plugin-flutter/issues?q=is%3Aopen+is%3Aissue
homepage: https://docs.herow.io/sdk/6.3/android/5-minutes-quickstart.html
homepage: https://github.com/herowio/herow-plugin-flutter
environment:
sdk: ">=2.12.0 <3.0.0"
flutter: ">=1.20.0"
Expand Down