Skip to content

Commit

Permalink
Fix google play policy (#12)
Browse files Browse the repository at this point in the history
* fix-google play policy

Updated the SDK for fixing the google play policy
Link - https://app.asana.com/0/0/1203533218631442/f

* Update: Readme.md

* update: TrackierFlutterPlugin

* update: SwiftTrackierflutterPlugin.swift

* fix: Indentation
  • Loading branch information
IloveJavaa authored Dec 14, 2022
1 parent 2522624 commit 86fa3aa
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## 1.6.32
## 1.6.33

- fix: session tracking edge case
- fix: Google-play policy fix
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ You can add the flutter sdk in two ways:-

```
dependencies:
trackier_sdk_flutter: ^1.6.32
trackier_sdk_flutter: ^1.6.33
```

2. By using cli command. you need to run the below command in `terminal/cmd`.
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ android {
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.annotation:annotation:1.2.0'
implementation 'com.trackier:android-sdk:1.6.30'
implementation 'com.trackier:android-sdk:1.6.33'
implementation 'com.android.installreferrer:installreferrer:2.2'
}
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class TrackierfluttersdkPlugin : FlutterPlugin, MethodCallHandler {
environment = configMap.get("environment") as String
}
trackierSDKConfig = TrackierSDKConfig(context, appToken, environment)
trackierSDKConfig.setSDKVersion("1.6.30")
trackierSDKConfig.setSDKVersion("1.6.33")
trackierSDKConfig.setSDKType("flutter_sdk")
trackierSDKConfig.setAppSecret(secretId, secretKey)

Expand Down
1 change: 1 addition & 0 deletions ios/Classes/SwiftTrackierfluttersdkPlugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ public class SwiftTrackierfluttersdkPlugin: NSObject, FlutterPlugin {
let secretKey = "\(dict?["secretKey"] as? String ?? "")"
let config = TrackierSDKConfig(appToken: appToken , env: environment)
config.setAppSecret(secretId: secretId, secretKey: secretKey)
config.setSDKVersion(sdkVersion: "1.6.33")
TrackierSDK.initialize(config: config)
}

Expand Down
2 changes: 1 addition & 1 deletion ios/trackier_sdk_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'trackier_sdk_flutter'
s.version = '1.6.32'
s.version = '1.6.33'
s.summary = 'Trackier flutter SDK'
s.description = <<-DESC
This is Trackier flutter SDK
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: trackier_sdk_flutter
description: This is trackier flutter SDK
version: 1.6.32
version: 1.6.33
homepage: https://github.com/trackier/flutter-sdk

environment:
Expand Down

0 comments on commit 86fa3aa

Please sign in to comment.