Skip to content

Version 4.17.0 #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Dec 4, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
### Version 4.17.0 (4th December 2018)
#### Added
- Official Flutter SDK release.

#### Native SDKs
- [iOS@v4.17.0][ios_sdk_v4.17.0]
- [Android@v4.17.0][android_sdk_v4.17.0]

---

### Version 0.0.4 (4th December 2018)
#### Changed
- Changed SDK API to be more Dart friendly.
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,12 +278,12 @@ Adjust.start(adjustConfig);
You can increase or decrease the amount of logs that you see during testing by setting `logLevel` member on your config instance with one of the following parameters:

```java
adjustConfig.logLevel = AdjustLogLevel.VERBOSE; // enable all logs
adjustConfig.logLevel = AdjustLogLevel.DEBUG; // disable verbose logs
adjustConfig.logLevel = AdjustLogLevel.INFO; // disable debug logs (default)
adjustConfig.logLevel = AdjustLogLevel.WARN; // disable info logs
adjustConfig.logLevel = AdjustLogLevel.ERROR; // disable warning logs
adjustConfig.logLevel = AdjustLogLevel.SUPRESS; // disable all logs
adjustConfig.logLevel = AdjustLogLevel.verbose; // enable all logs
adjustConfig.logLevel = AdjustLogLevel.debug; // disable verbose logs
adjustConfig.logLevel = AdjustLogLevel.info; // disable debug logs (default)
adjustConfig.logLevel = AdjustLogLevel.warn; // disable info logs
adjustConfig.logLevel = AdjustLogLevel.error; // disable warning logs
adjustConfig.logLevel = AdjustLogLevel.suppress; // disable all logs
```

### <a id="qs-build-the-app"></a>Build your app
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.4
4.17.0
2 changes: 1 addition & 1 deletion ios/adjust_sdk.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'adjust_sdk'
s.version = '0.0.4'
s.version = '4.17.0'
s.summary = 'Adjust Flutter SDK for iOS platform'
s.description = <<-DESC
Adjust Flutter SDK for iOS platform.
Expand Down
2 changes: 1 addition & 1 deletion lib/adjust.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import 'package:adjust_sdk/adjust_event.dart';
import 'package:adjust_sdk/adjust_attribution.dart';

class Adjust {
static const String _sdkPrefix = 'flutter0.0.4';
static const String _sdkPrefix = 'flutter4.17.0';
static const MethodChannel _channel = const MethodChannel('com.adjust.sdk/api');

static void start(AdjustConfig config) {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: adjust_sdk
description: This is the Flutter SDK of Adjust™. You can read more about Adjust™ at adjust.com.
author: Adjust GmbH <srdjan@adjust.com>
homepage: https://github.com/adjust/flutter_sdk
version: 0.0.4
version: 4.17.0

environment:
sdk: ">=2.0.0 <3.0.0"
Expand Down