Skip to content
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
14 changes: 9 additions & 5 deletions splitio/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
## 0.1.2+1
## 0.1.2+2 (Dec 7, 2022)

* Added exports for models.
Added consumer ProGuard rules for Android.

## 0.1.2
## 0.1.2+1 (Sep 14, 2022)

Added exports for models.

## 0.1.2 (Sep 13, 2022)

* Migrated to federated structure.
* Added support for Impression Listener.
Expand All @@ -11,11 +15,11 @@
* Added support for manager methods.
* Added support for linking native factory.

## 0.1.1
## 0.1.1 (Aug 19, 2022)

Minor fixes.

## 0.1.0
## 0.1.0 (Aug 3, 2022)

Initial release.

Expand Down
4 changes: 2 additions & 2 deletions splitio/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: splitio
description: Official plugin for split.io, the platform for controlled rollouts, which serves features to your users via a Split feature flag to manage your complete customer experience.
version: 0.1.2+1
version: 0.1.2+2
homepage: https://split.io/
repository: https://github.com/splitio/flutter-sdk-plugin/tree/main/splitio/

Expand All @@ -19,7 +19,7 @@ flutter:
dependencies:
flutter:
sdk: flutter
splitio_android: ^0.1.2
splitio_android: ^0.1.2+1
splitio_ios: ^0.1.2
splitio_platform_interface: ^1.0.0

Expand Down
6 changes: 5 additions & 1 deletion splitio_android/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.1.2
## 0.1.2+1 (Dec 7, 2022)

Added Consumer ProGuard rules.

## 0.1.2 (Aug 13, 2022)

Splits from `splitio` as federated implementation.
2 changes: 2 additions & 0 deletions splitio_android/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ android {

defaultConfig {
minSdkVersion 16

consumerProguardFiles 'split-proguard-rules.pro'
}

dependencies {
Expand Down
15 changes: 15 additions & 0 deletions splitio_android/android/split-proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Please include these rules in your project
# in order to make Split code work properly when
# using proguard
-keep class io.split.android.client.dtos.* { *; }
-keep class io.split.android.client.storage.db.** { *; }
-keep public class io.split.android.client.service.sseclient.SseJwtToken.** { *; }
-keep public class io.split.android.client.service.sseclient.SseAuthToken.** { *; }
-keep public class io.split.android.client.service.sseclient.SseAuthenticationResponse.** { *; }
-keep class io.split.android.client.service.sseclient.notifications.** { *; }
-keepattributes Signature
-keep class com.google.gson.reflect.TypeToken { *; }
-keep class * extends com.google.gson.reflect.TypeToken
-keepclassmembers,allowobfuscation class * {
@com.google.gson.annotations.SerializedName <fields>;
}
2 changes: 1 addition & 1 deletion splitio_android/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: splitio_android
description: The official Android implementation of splitio Flutter plugin.
repository: https://github.com/splitio/flutter-sdk-plugin/tree/main/splitio_android
version: 0.1.2
version: 0.1.2+1

environment:
sdk: ">=2.16.2 <3.0.0"
Expand Down
2 changes: 1 addition & 1 deletion splitio_ios/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# 0.1.2
# 0.1.2 (Aug 13, 2022)

Splits from `splitio` as federated implementation.
2 changes: 1 addition & 1 deletion splitio_platform_interface/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# 1.0.0
# 1.0.0 (Aug 13, 2022)

Initial release.