Skip to content

Commit

Permalink
fix-namespace-issue
Browse files Browse the repository at this point in the history
  • Loading branch information
IloveJavaa committed Nov 19, 2024
1 parent 41249d1 commit 52dff03
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
## 1.6.60
## 1.6.61

- update: version upgrade
- update: imei support in android and parse deeplink in ios
- fix: fix namespace issue
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ You can add the flutter sdk in two ways:-

```
dependencies:
trackier_sdk_flutter: ^1.6.60
trackier_sdk_flutter: ^1.6.61
```

2. By using cli command. you need to run the below command in `terminal/cmd`.
Expand Down
1 change: 1 addition & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ apply plugin: 'kotlin-android'

android {
compileSdkVersion 31
namespace "com.example.trackierfluttersdk"

sourceSets {
main.java.srcDirs += 'src/main/kotlin'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ class TrackierfluttersdkPlugin : FlutterPlugin, MethodCallHandler {
disableOrganic = configMap.get("disableOrganicTracking") as Boolean
}
trackierSDKConfig = TrackierSDKConfig(context, appToken, environment)
trackierSDKConfig.setSDKVersion("1.6.60")
trackierSDKConfig.setSDKVersion("1.6.61")
trackierSDKConfig.setSDKType("flutter_sdk")
trackierSDKConfig.setAppSecret(secretId, secretKey)
trackierSDKConfig.setManualMode(manualmode)
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/SwiftTrackierfluttersdkPlugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ public class SwiftTrackierfluttersdkPlugin: NSObject, FlutterPlugin, DeepLinkLis
let deeplinkKey = "\(dict?["deeplinkCallback"] as? String ?? "")"
let config = TrackierSDKConfig(appToken: appToken , env: environment)
config.setAppSecret(secretId: secretId, secretKey: secretKey)
config.setSDKVersion(sdkVersion: "1.6.60")
config.setSDKVersion(sdkVersion: "1.6.61")
if (!deeplinkKey.isEmpty) {
config.setDeeplinkListerner(listener: self)
}
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.60'
s.version = '1.6.61'
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.60
version: 1.6.61
homepage: https://github.com/trackier/flutter-sdk

environment:
Expand Down

0 comments on commit 52dff03

Please sign in to comment.