Skip to content

Commit

Permalink
Changelog updated for 23.8.3-np (#149)
Browse files Browse the repository at this point in the history
camel case warning fix
  • Loading branch information
ijunaid authored Oct 19, 2023
1 parent 0ea407f commit 2429fa7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
* Added a call to enroll users to A/B tests when getting a remote config value: 'getValueAndEnroll'
* Added a call to enroll users to A/B tests when getting all remote config values: 'getAllValuesAndEnroll'
* Added a config method to set a time limit after which the requests would be removed if not sent to the server: 'setRequestDropAgeHours'
* Added app version in all API requests.

* Fixed sending '--' as carrier name due to platform changes from iOS version 16.4. This version and above will now not send any carrier information due to platform limitations.

* Updated underlying Android SDK version to 23.8.3
* Updated underlying iOS SDK version to 23.8.3
Expand Down
4 changes: 2 additions & 2 deletions lib/countly_config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,8 @@ class CountlyConfig {
/// [String city] - Name of the user's city
/// [String gpsCoordinates] - comma separate lat and lng values. For example, "56.42345,123.45325"
/// [String ipAddress] - ip address
CountlyConfig setLocation({String? country_code, String? city, String? gpsCoordinates, String? ipAddress}) {
_locationCountryCode = country_code;
CountlyConfig setLocation({String? countryCode, String? city, String? gpsCoordinates, String? ipAddress}) {
_locationCountryCode = countryCode;
_locationCity = city;
_locationGpsCoordinates = gpsCoordinates;
_locationIpAddress = ipAddress;
Expand Down

0 comments on commit 2429fa7

Please sign in to comment.