Skip to content

Commit

Permalink
fix env vairable name
Browse files Browse the repository at this point in the history
  • Loading branch information
ofek-autofleet committed Apr 8, 2024
1 parent f1e3708 commit c797c01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/client/Locomotion/src/services/appsflyer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ import appsFlyer from 'react-native-appsflyer';
import Config from 'react-native-config';

const LOG_PREFIX = 'APPSFLYER INTEG';
const { ANDROID_APPSFLYER_DEV_KEY, IOS_APPSFLYER_DEV_KEY, IOS_APPSFLYER_APP_ID } = Config;
const { ANDROID_APPSFLYER_DEV_KEY, IOS_APPSFLYER_DEV_KEY, IOS_APP_ID } = Config;
const PLATFORM_CONFIG: any = {
android: {
devKey: ANDROID_APPSFLYER_DEV_KEY,
},
ios: {
devKey: IOS_APPSFLYER_DEV_KEY,
appId: IOS_APPSFLYER_APP_ID,
appId: IOS_APP_ID,
timeToWaitForATTUserAuthorization: 10, // for iOS 14.5
},
};
Expand Down

0 comments on commit c797c01

Please sign in to comment.