Releases: Teknasyon-Teknoloji/desk360-flutter-sdk
Releases · Teknasyon-Teknoloji/desk360-flutter-sdk
Release 2.0.0
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 yourios/Podfile
. - Add following code into your
ios/Podfile
.
- Add
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 version1.0.10
. - Updated flutter sdk version requirements.
Fixed
- Removed unused dependencies.
- Updated syntax to eliminate deprecated errors.
Release 1.0.0
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