Skip to content

Commit 06eeb89

Browse files
Merge pull request #4 from andre-paraense/issue-1
Issue #1 - cannot find protocol declaration for 'SurvicateDelegate'. #1
2 parents 466ee0c + 27a0778 commit 06eeb89

File tree

6 files changed

+32
-21
lines changed

6 files changed

+32
-21
lines changed

.idea/workspace.xml

Lines changed: 20 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.0.1
2+
3+
* Bumping Survicate Android and iOS SDKs
4+
* Solved the `cannot find protocol declaration for 'SurvicateDelegate'` iOS bug (thanks to @hamed-rezaee)
5+
16
## 1.0.0
27

38
* Initial release.

android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group 'com.oakam.survicate.survicate_flutter_sdk'
2-
version '1.0.0'
2+
version '1.0.1'
33

44
buildscript {
55
ext.kotlin_version = '1.3.50'
@@ -26,7 +26,7 @@ apply plugin: 'com.android.library'
2626
apply plugin: 'kotlin-android'
2727

2828
android {
29-
compileSdkVersion 29
29+
compileSdkVersion 30
3030

3131
sourceSets {
3232
main.java.srcDirs += 'src/main/kotlin'
@@ -41,5 +41,5 @@ android {
4141

4242
dependencies {
4343
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
44-
implementation 'com.survicate:survicate-sdk:1.2.2'
44+
implementation 'com.survicate:survicate-sdk:1.2.3'
4545
}

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ packages:
127127
path: ".."
128128
relative: true
129129
source: path
130-
version: "1.0.0"
130+
version: "1.0.1"
131131
term_glyph:
132132
dependency: transitive
133133
description:

ios/survicate_flutter_sdk.podspec

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'survicate_flutter_sdk'
7-
s.version = '1.0.0'
7+
s.version = '1.0.1'
88
s.summary = 'Survicate mobile survey SDK for Flutter.'
99
s.description = <<-DESC
1010
A new flutter plugin project.
@@ -15,10 +15,9 @@ A new flutter plugin project.
1515
s.source = { :path => '.' }
1616
s.source_files = 'Classes/**/*'
1717
s.dependency 'Flutter'
18-
s.dependency 'Survicate', '1.4.2'
18+
s.dependency 'Survicate', '1.4.3'
1919
s.platform = :ios, '10.0'
2020

2121
# Flutter.framework does not contain a i386 slice.
2222
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
23-
s.swift_version = '5.0'
2423
end

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: survicate_flutter_sdk
22
description: Survicate mobile SDK for Flutter allows you to survey specific groups of your mobile app users to understand their needs, expectations, and objections.
3-
version: 1.0.0
3+
version: 1.0.1
44
homepage: https://github.com/andre-paraense/survicate-flutter-sdk
55
issue_tracker: https://github.com/andre-paraense/survicate-flutter-sdk/issues
66

0 commit comments

Comments
 (0)