Skip to content

Releases: Teknasyon-Teknoloji/desk360-flutter-sdk

Release 2.0.0

16 Oct 11:16
8a9bc82
Compare
Choose a tag to compare

Installation

You can install this release with updating your pubspec.yaml like below:

desk360flutter:
    git:
        url: https://github.com/Teknasyon-Teknoloji/desk360-flutter-sdk
        ref: 2.0.0

Highlights

  • Support for flutter v3 has arrived.

Android

  • Add following code into android/app/build.gradle (Add inside android section)
buildFeatures {
    dataBinding true
}

iOS

  • If you get Swift Compiler Error (Xcode): Compiling for iOS 10.0, but module 'DeviceKit' has a minimum deployment target of iOS 11.0 error.
    • Add platform :ios, '11.0' into your ios/Podfile.
    • Add following code into your ios/Podfile.
post_install do |installer|
  installer.generated_projects.each do |project|
    project.targets.each do |target|
        target.build_configurations.each do |config|
          config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
          config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
         end
    end
  end
end

Changelog

Changed

  • On Android, desk360 sdk version upgraded to version 1.0.10.
  • Updated flutter sdk version requirements.

Fixed

  • Removed unused dependencies.
  • Updated syntax to eliminate deprecated errors.

Release 1.0.0

20 Sep 07:14
Compare
Choose a tag to compare

You can install this release with updating your pubspec.yaml like below:

deepwall_flutter_plugin:
    git:
        url: https://github.com/Teknasyon-Teknoloji/desk360-flutter-sdk.git
        ref: 1.0.0

0.1.1

26 Aug 10:58
206cef9
Compare
Choose a tag to compare
  • Fixed proguard for release version

v0.1.0

17 Nov 09:13
Compare
Choose a tag to compare
[doc] Update CHANGELOG