Skip to content

Commit

Permalink
chore: fix in-app site id
Browse files Browse the repository at this point in the history
  • Loading branch information
mrehan27 committed Oct 2, 2024
1 parent c82a7a4 commit e3382b1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 48 deletions.
46 changes: 0 additions & 46 deletions Apps/APN/android/app/google-services.json.example

This file was deleted.

2 changes: 1 addition & 1 deletion Apps/APN/src/services/CustomerIOService.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const initializeCustomerIoSDK = (sdkConfig) => {
trackApplicationLifecycleEvents: sdkConfig.trackAppLifecycleEvents,
autoTrackDeviceAttributes: sdkConfig.autoTrackDeviceAttributes,
inApp: {
siteId: 'site_id',
siteId: sdkConfig.siteId,
},
};

Expand Down
2 changes: 1 addition & 1 deletion Apps/FCM/src/services/CustomerIOService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const initializeCustomerIoSDK = (sdkConfig: CustomerIoSDKConfig) => {
trackApplicationLifecycleEvents: sdkConfig.trackAppLifecycleEvents,
autoTrackDeviceAttributes: sdkConfig.trackDeviceAttributes,
inApp: {
siteId: 'site_id',
siteId: sdkConfig.siteId,
},
logLevel: CioLogLevel.None, // Add logLevel property
};
Expand Down

0 comments on commit e3382b1

Please sign in to comment.