Skip to content

Commit 20c862c

Browse files
authored
0.1.0-rc.2 (#31)
1 parent 05d5516 commit 20c862c

File tree

7 files changed

+11
-13
lines changed

7 files changed

+11
-13
lines changed

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Apache License
22
Version 2.0, January 2004
3-
http://www.apache.org/licenses/
3+
https://www.apache.org/licenses/
44

55
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
66

@@ -192,7 +192,7 @@
192192
you may not use this file except in compliance with the License.
193193
You may obtain a copy of the License at
194194

195-
http://www.apache.org/licenses/LICENSE-2.0
195+
https://www.apache.org/licenses/LICENSE-2.0
196196

197197
Unless required by applicable law or agreed to in writing, software
198198
distributed under the License is distributed on an "AS IS" BASIS,

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ The Split team monitors all issues submitted to this [issue tracker](https://git
4848
Please see [contributors guide](https://github.com/splitio/flutter-sdk-plugin/blob/main/CONTRIBUTORS-GUIDE.md) to find all you need to submit a Pull Request (PR).
4949

5050
## License
51-
Licensed under the Apache License, Version 2.0. See: [Apache License](http://www.apache.org/licenses/).
51+
Licensed under the Apache License, Version 2.0. See: [Apache License](https://www.apache.org/licenses/).
5252

5353
## About Split
5454

@@ -78,4 +78,4 @@ For a comprehensive list of open source projects visit our [Github page](https:/
7878

7979
**Learn more about Split:**
8080

81-
Visit [split.io/product](https://www.split.io/product) for an overview of Split, or visit our documentation at [help.split.io](http://help.split.io) for more detailed information.
81+
Visit [split.io/product](https://www.split.io/product) for an overview of Split, or visit our documentation at [help.split.io](https://help.split.io) for more detailed information.

android/src/main/java/io/split/splitio/SplitClientConfigHelper.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class SplitClientConfigHelper {
2323
private static final String PERSISTENT_ATTRIBUTES_ENABLED = "persistentAttributesEnabled";
2424
private static final String SDK_ENDPOINT = "sdkEndpoint";
2525
private static final String EVENTS_ENDPOINT = "eventsEndpoint";
26-
private static final String SSE_AUTH_SERVICE_ENDPOINT = "sseAuthServiceEndpoint";
26+
private static final String SSE_AUTH_SERVICE_ENDPOINT = "authServiceEndpoint";
2727
private static final String STREAMING_SERVICE_ENDPOINT = "streamingServiceEndpoint";
2828
private static final String TELEMETRY_SERVICE_ENDPOINT = "telemetryServiceEndpoint";
2929

@@ -83,14 +83,13 @@ static SplitClientConfig fromMap(Map<String, Object> configurationMap) {
8383
}
8484

8585
Boolean enableDebug = getBoolean(configurationMap, ENABLE_DEBUG);
86-
if (enableDebug) {
86+
if (enableDebug != null && enableDebug) {
8787
builder.enableDebug();
8888
}
8989

9090
Boolean streamingEnabled = getBoolean(configurationMap, STREAMING_ENABLED);
9191
if (streamingEnabled != null) {
9292
builder.streamingEnabled(streamingEnabled);
93-
9493
}
9594

9695
Boolean persistentAttributesEnabled = getBoolean(configurationMap, PERSISTENT_ATTRIBUTES_ENABLED);

example/ios/Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ EXTERNAL SOURCES:
2222
SPEC CHECKSUMS:
2323
Flutter: 50d75fe2f02b26cc09d224853bb45737f8b3214a
2424
Split: d103c6afa47b5d1eac21e066c6bc09c879b21798
25-
splitio: d06a91b6a23fa1225cd63286553653d9b2b12258
25+
splitio: 6ef65e65e042489e9d30fe1f56abe9340bf69039
2626

2727
PODFILE CHECKSUM: 6ab177d3659abbf5f15e864674366127c98cb8c0
2828

example/lib/main.dart

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,8 @@ class _SplitioExampleAppState extends State<SplitioExampleApp> {
3131

3232
final Splitio _split = Splitio(_apiKey, _matchingKey,
3333
configuration: SplitConfiguration(
34-
enableDebug: true,
35-
trafficType: "user",
36-
persistentAttributesEnabled: true));
34+
trafficType: "user",
35+
));
3736

3837
@override
3938
void initState() {

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ packages:
127127
path: ".."
128128
relative: true
129129
source: path
130-
version: "0.1.0-rc.1"
130+
version: "0.1.0-rc.2"
131131
stack_trace:
132132
dependency: transitive
133133
description:

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: splitio
22
description: split.io official Flutter plugin.
3-
version: 0.1.0-rc.1
3+
version: 0.1.0-rc.2
44
homepage: https://split.io/
55
repository: https://github.com/splitio/flutter-sdk-plugin
66

0 commit comments

Comments
 (0)