Skip to content

Releases: refiner-io/mobile-sdk-flutter

1.5.1

12 Sep 23:38
fa3e5ed
Compare
Choose a tag to compare
  • Add new method: "setUser"

Android

  • Fix survey resize issue on device rotation change

iOS

  • Always show a survey in the device's current orientation, do not rotate UI on device rotation.

1.4.0

30 Jul 22:40
7d701a8
Compare
Choose a tag to compare
  • Add new method: "startSession"

1.3.10

11 Jun 13:52
9c0f652
Compare
Choose a tag to compare
  • Limit the SDK to be initialized only once per app session.

iOS

  • Upgrade Refiner iOS SDK to 1.3.10
  • Add privacy manifest
  • Fix bug regarding "custom styles" not being applied

Android

  • Upgrade Refiner Android SDK to 1.3.10

1.3.6

27 Feb 09:19
3ad796b
Compare
Choose a tag to compare

(Android)

  • Upgrade Refiner Android SDK to 1.3.6
  • Remove databinding requirement
  • Fix video rendering issue in a survey
  • Dismiss the survey when an error occurred and the survey is not shown

1.3.4

10 Jan 11:18
5cb709d
Compare
Choose a tag to compare
  • Support redirecting the user to the out-of-app browser with a provided URL after submitting a response to the survey.

1.3.0

30 Nov 11:12
Compare
Choose a tag to compare
  • Change parameter name from enableDebugMode to debugMode in initialize method.

  • Add new methods: setProject, dismissForm and closeForm

  • Show surveys starting from the top of the screen, now covering the status bar (iOS only)

  • The versions we use in the SDK;

    • Flutter: >=2.19.6 <4.0.0
    • Refiner Android SDK: 1.3.1
    • Gradle: 8.2
    • AGP: 8.1.4
    • Kotlin: 1.9.20
    • Refiner iOS SDK: 1.3.0

(Android)
In case you get "Inconsistent JVM-target compatibility detected" error during your build, you may choose to force to use JdkVersion: 11 in your app's build.gradle.kts file

android {
...

    compileOptions {
        sourceCompatibility = JavaVersion.VERSION_11
        targetCompatibility = JavaVersion.VERSION_11
    }

    kotlin {
        jvmToolchain(11)
    }
}

0.0.5

22 Nov 15:14
Compare
Choose a tag to compare
  • Hotfix: Fix setting locale parameter in Flutter iOS SDK

0.0.4

16 Nov 15:39
Compare
Choose a tag to compare
  • Hotfix due to crash on resetUser method usage on iOS (issue #2)