Skip to content

Commit

Permalink
Merge pull request #4 from andre-paraense/issue-1
Browse files Browse the repository at this point in the history
Issue #1 - cannot find protocol declaration for 'SurvicateDelegate'. #1
  • Loading branch information
andre-paraense authored Jan 29, 2021
2 parents 466ee0c + 27a0778 commit 06eeb89
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 21 deletions.
33 changes: 20 additions & 13 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.0.1

* Bumping Survicate Android and iOS SDKs
* Solved the `cannot find protocol declaration for 'SurvicateDelegate'` iOS bug (thanks to @hamed-rezaee)

## 1.0.0

* Initial release.
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 'com.oakam.survicate.survicate_flutter_sdk'
version '1.0.0'
version '1.0.1'

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

android {
compileSdkVersion 29
compileSdkVersion 30

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

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.survicate:survicate-sdk:1.2.2'
implementation 'com.survicate:survicate-sdk:1.2.3'
}
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.0.0"
version: "1.0.1"
term_glyph:
dependency: transitive
description:
Expand Down
5 changes: 2 additions & 3 deletions ios/survicate_flutter_sdk.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'survicate_flutter_sdk'
s.version = '1.0.0'
s.version = '1.0.1'
s.summary = 'Survicate mobile survey SDK for Flutter.'
s.description = <<-DESC
A new flutter plugin project.
Expand All @@ -15,10 +15,9 @@ A new flutter plugin project.
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.dependency 'Flutter'
s.dependency 'Survicate', '1.4.2'
s.dependency 'Survicate', '1.4.3'
s.platform = :ios, '10.0'

# Flutter.framework does not contain a i386 slice.
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
s.swift_version = '5.0'
end
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: survicate_flutter_sdk
description: Survicate mobile SDK for Flutter allows you to survey specific groups of your mobile app users to understand their needs, expectations, and objections.
version: 1.0.0
version: 1.0.1
homepage: https://github.com/andre-paraense/survicate-flutter-sdk
issue_tracker: https://github.com/andre-paraense/survicate-flutter-sdk/issues

Expand Down

0 comments on commit 06eeb89

Please sign in to comment.