Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to test non-organic install or logEvent thru SDK test integration #290

Open
irfan-429 opened this issue Aug 25, 2023 · 3 comments
Open
Labels

Comments

@irfan-429
Copy link

Describe the bug
I configured AppsFlyer SDK to my Flutter application following https://pub.dev/packages/appsflyer_sdk but I’m not able to see any of the logs in my AppsFlyer dashboard in debug mode even though I provided the correct keys. I performed integration test but none worked https://hq1.appsflyer.com/sdk-integration-test/app/com.app.businessempire.debug

To Reproduce
Steps to produce (Non-organic install test):

  1. Uninstall the previous app (if there)
  2. Open the SDK integration link and try the non-organic install
  3. Select a registered testing device and scan the QR code (other)
  4. Run the app directly from Android Studio
  5. Launch the app and wait until AppsFlyer finishes the test (which never finishes in fact)

Steps to produce (in-app events test):

  1. Open the SDK integration link and try the in-app events test
  2. Select a registered testing device and tap on “I’m ready to trigger the event"
  3. Trigger the logEvent from the app and wait until AppsFlyer finishes the test (which never finishes in fact)

Expected behavior
I should be able to see the non-organic install or log-event

Desktop:

  • OS: Mac OS
  • Version: M2 Pro
  • Browser: Chrome

Smartphone:

  • Device: Android (Xiaomi)
  • OS: Android 12

My code snippet

 AppsFlyerOptions appsFlyerOptions = AppsFlyerOptions(
    afDevKey: "MY_DEV_KEY",
    appId: "com.app.businessempire.debug" ,
    showDebug: true,
    timeToWaitForATTUserAuthorization: 15, // for iOS 14.5
  );

  appsflyer = AppsflyerSdk(appsFlyerOptions);
  appsflyer.onInstallConversionData(
    (data) {
      // Handle the install conversion data here
      if (data['af_status'] == 'organic') {
        // User installed the app organically
        log('User installed the app.');
      } else {
        // User installed the app through a campaign or source
        log('User installed the app through a campaign.');
      }
    },
  );

  await appsflyer.initSdk(
    registerConversionDataCallback: true,
    registerOnAppOpenAttributionCallback: true,
    registerOnDeepLinkingCallback: true,
  );



    //HERE IS LOG EVENT CALLED ON LOGIN
    var eventValues = {
      "af_country": "Pakistan",
      "af_city": "Lahore"
    };
    try {
      await appsflyer.logEvent("af_login", eventValues).then((value) {
        log("Result logEvent: "+value.toString());
      });
    } catch (e) {
      print("Result logEvent: ${e.toString()}");
    }

Here are complete logs


D/AppsFlyer_6.12.2( 5261): CFG: No configuration found in cache
D/AppsFlyer_6.12.2( 5261): QUEUE: new task added: RC_CDN-UpdateRemoteConfiguration-1
D/AppsFlyer_6.12.2( 5261): Install referrer is not allowed
D/AppsFlyer_6.12.2( 5261): Xiaomi Install Referrer is allowed
2
D/AppsFlyer_6.12.2( 5261): com.xiaomi.mipicks
W/AppsFlyer_6.12.2( 5261): XiaomiInstallReferrer FEATURE_NOT_SUPPORTED
D/AppsFlyer_6.12.2( 5261): Xiaomi Install Referrer collected locally
D/AppsFlyer_6.12.2( 5261): Initializing AppsFlyer SDK: (v6.12.2.262)
I/AppsFlyer_6.12.2( 5261): Starting AppsFlyer: (v6.12.2.262)
I/AppsFlyer_6.12.2( 5261): Build Number: 262
D/AppsFlyer_6.12.2( 5261): QUEUE: tried to add already scheduled task: RC_CDN-UpdateRemoteConfiguration-2
D/AppsFlyer_6.12.2( 5261): QUEUE: new task added: LOAD_CACHE-LoadCachedRequests-3
D/AppsFlyer_6.12.2( 5261): QUEUE: starting task execution: RC_CDN-UpdateRemoteConfiguration-1
I/AppsFlyer_6.12.2( 5261): CFG: active config is missing - fetching from CDN
D/AppsFlyer_6.12.2( 5261): QUEUE: tried to add already running task: RC_CDN-UpdateRemoteConfiguration-4
D/AppsFlyer_6.12.2( 5261): QUEUE: tried to add already scheduled task: LOAD_CACHE-LoadCachedRequests-5
I/AppsFlyer_6.12.2( 5261): onBecameForeground
I/AppsFlyer_6.12.2( 5261): CFG: Cached config is expired, updating...
D/AppsFlyer_6.12.2( 5261): QUEUE: starting task execution: LOAD_CACHE-LoadCachedRequests-3
D/AppsFlyer_6.12.2( 5261): QUEUE: execution finished for LOAD_CACHE-LoadCachedRequests-3, result: SUCCESS
D/AppsFlyer_6.12.2( 5261): HTTP: [202842614] GET:https://tdkmbc-cdn-settings.appsflyersdk.com/android/v1/449df2dd1eac34fa7f8edee41650115845ff6d2a7935aa23939ff0687e790af9/settings

D/AppsFlyer_6.12.2( 5261): No deep link detected
D/AppsFlyer_6.12.2( 5261): QUEUE: new task was blocked: DLSDK-DdlSdk-6
D/AppsFlyer_6.12.2( 5261): QUEUE: new task added: DLSDK-DdlSdk-6
I/AppsFlyer_6.12.2( 5261): Sending first launch for this session!
I/AppsFlyer_6.12.2( 5261): sendWithEvent from activity: android.app.Application
I/AppsFlyer_6.12.2( 5261): Trying to fetch GAID..
I/AppsFlyer_6.12.2( 5261): ******* sendTrackingWithEvent: Launch
W/AppsFlyer_6.12.2( 5261): Exception while collecting facebook's attribution ID.
I/AppsFlyer_6.12.2( 5261): IMEI was not collected.
I/AppsFlyer_6.12.2( 5261): Android ID was not collected.
D/AppsFlyer_6.12.2( 5261): No OAID library
D/AppsFlyer_6.12.2( 5261): AppsFlyer: first launch detected
I/AppsFlyer_6.12.2( 5261): AppsFlyer: first launch date: 2023-08-24_091226+0000
D/AppsFlyer_6.12.2( 5261): didConfigureTokenRefreshService=false
I/AppsFlyer_6.12.2( 5261): AppsFlyerLib.sendWithEvent
D/AppsFlyer_6.12.2( 5261): QUEUE: new task was blocked: CONVERSION-7

I/AppsFlyer_6.12.2( 5261): CONVERSION-7: preparing data: {"platform_extension_v2":{"platform":"android_flutter","version":"6.10.3"},"kef6268":"5e9a90f49633d8dc48191f1b0c531a0d591a1d0d5a1f1f","country":"US","af_timestamp":"1692868346736","appsflyerKey":"j********************c","isFirstCall":"true","registeredUninstall":false,"targetSDKver":33,"operator":"T-Mobile","isGaidWithGps":"true","app_version_code":"68","model":"sdk_gphone64_arm64","brand":"google","deviceType":"userdebug","deviceData":{"sensors":[{"sT":1,"sV":"The Android Open Source Project","sN":"Goldfish 3-axis Accelerometer"}],"cpu_abi":"arm64-v8a","build_display_id":"sdk_gphone64_arm64-userdebug 14 UPB4.230623.005 10442412 dev-keys","btch":"no","dim":{"xdp":"440.0","ydp":"440.0","x_px":"1080","y_px":"2154","d_dpi":"440","size":"2"},"arch":"","btl":"100.0","cpu_abi2":""},"disk":"3446\/5939","meta":{"host":{"name":"appsflyersdk.com","prefix":"tdkmbc-"},"first_launch":{"from_fg":270,"start_with":"activity","init_to_fg":29}},"sdk":"34","app_version_name":"3.0.5","device":"emu64a","cksm_v3":"e76d2580db55b97d","af_events_api":"1","cell":{"mnc":260,"mcc":310},"network":"MOBILE","timepassedsincelastlaunch":"-1","open_referrer":"android-app:\/\/com.android.shell","sig":"B8FF0A4347035C4AD65AA8525295390AC0E5C16DAB03DE7BF43D93D1120E0673","uid":"1692868346553-3012660587303683035","lang_code":"en","installDate":"2023-08-24_091216+0000","referrers":[{"api_ver":0,"api_ver_name":"","response":"FEATURE_NOT_SUPPORTED","latency":7,"source":"xiaomi","type":"store"}],"firstLaunchDate":"2023-08-24_091226+0000","ivc":false,"lang":"English","batteryLevel":"100.0","last_boot_time":1692866727018,"install_source_info":{"initiating_package":"com.android.shell"},"product":"sdk_gphone64_arm64","date2":"2023-08-24_141216+0500","counter":"1","date1":"2023-08-24_141216+0500","advertiserId":"1821697f-6d95-44c8-97d2-8545ccfa49e1","advertiserIdEnabled":"true","carrier":"T-Mobile","af_preinstalled":"false","iaecounter":"0","sc_o":"p","tokenRefreshConfigured":false,"platformextension":"android_flutter"}

D/AppsFlyer_6.12.2( 5261): HTTP: [202842614] response code:200 OK
D/AppsFlyer_6.12.2( 5261):  body:{"features":{},"ver":"default.v1.1637149529"}
D/AppsFlyer_6.12.2( 5261):  took 748ms
D/AppsFlyer_6.12.2( 5261): CFG: Config successfully updated, timeToLive: 86400 seconds
I/AppsFlyer_6.12.2( 5261): CACHE: caching request with URL: https://tdkmbc-conversions.appsflyersdk.com/api/v6.12/androidevent?app_id=com.app.businessempire.debug&buildnumber=6.12.2
I/AppsFlyer_6.12.2( 5261): CACHE: done, cacheKey: 1692868348652
D/AppsFlyer_6.12.2( 5261): QUEUE: new task added: CONVERSION-7
D/AppsFlyer_6.12.2( 5261): QUEUE: execution finished for RC_CDN-UpdateRemoteConfiguration-1, result: SUCCESS
D/AppsFlyer_6.12.2( 5261): QUEUE: starting task execution: DLSDK-DdlSdk-6
D/AppsFlyer_6.12.2( 5261): [DDL] start
D/AppsFlyer_6.12.2( 5261): [DDL] xiaomi referrer collected earlier
D/AppsFlyer_6.12.2( 5261): [DDL] Preparing request 1
I/AppsFlyer_6.12.2( 5261): Trying to fetch GAID..
D/AppsFlyer_6.12.2( 5261): No OAID library

I/AppsFlyer_6.12.2( 5261): call = https://tdkmbc-dlsdk.appsflyersdk.com/v1.0/android/com.app.businessempire.debug?af_sig=64e0d27de71957193a10744efc7dd219d2ac60dff582eafd373a9a86b8b27412&sdk_version=6.12; size = 250 bytes; body = {"os":"14","gaid":{"type":"unhashed","value":"1821697f-6d95-44c8-97d2-8545ccfa49e1"},"is_first":false,"lang":"en-US","type":"sdk_gphone64_arm64","request_id":"1692868346553-3012660587303683035","timestamp":"2023-08-24T09:12:28.782","request_count":1}

I/AppsFlyer_6.12.2( 5261): onBecameBackground
I/AppsFlyer_6.12.2( 5261): callStatsBackground background call
I/AppsFlyer_6.12.2( 5261): app went to background
D/AppsFlyer_6.12.2( 5261): Stats call is disabled, ignore ...
D/AppsFlyer_6.12.2( 5261): RD status is OFF
I/AppsFlyer_6.12.2( 5261): Status 200 ok
I/AppsFlyer_6.12.2( 5261): Connection call succeeded:
D/AppsFlyer_6.12.2( 5261): [DDL] Waiting for referrers...
D/AppsFlyer_6.12.2( 5261): [DDL] Calling onDeepLinking with:
D/AppsFlyer_6.12.2( 5261): {"status":"NOT_FOUND"}
D/AppsFlyer_6.12.2( 5261): QUEUE: execution finished for DLSDK-DdlSdk-6, result: FAILURE
D/AppsFlyer_6.12.2( 5261): QUEUE: starting task execution: CONVERSION-7

I/AppsFlyer_6.12.2( 5261): CONVERSION-7: preparing data: {"platform_extension_v2":{"platform":"android_flutter","version":"6.10.3"},"kef6268":"5e9a90f49633d8dc48191f1b0c531a0d591a1d0d5a1f13","country":"US","af_timestamp":"1692868346736","appsflyerKey":"j********************c","isFirstCall":"true","registeredUninstall":false,"targetSDKver":33,"operator":"T-Mobile","isGaidWithGps":"true","app_version_code":"68","model":"sdk_gphone64_arm64","brand":"google","deviceType":"userdebug","deviceData":{"sensors":[{"sT":1,"sV":"The Android Open Source Project","sN":"Goldfish 3-axis Accelerometer"}],"cpu_abi":"arm64-v8a","build_display_id":"sdk_gphone64_arm64-userdebug 14 UPB4.230623.005 10442412 dev-keys","btch":"no","dim":{"xdp":"440.0","ydp":"440.0","x_px":"1080","y_px":"2154","d_dpi":"440","size":"2"},"arch":"","btl":"100.0","cpu_abi2":""},"disk":"3446\/5939","meta":{"rc":{"sig":"success","delay":755,"c_ver":"default.v1.1637149529","latency":748,"cdn_token":"449df2dd1eac34fa7f8edee41650115845ff6d2a7935aa23939ff0687e790af9","res_code":200},"host":{"name":"appsflyersdk.com","prefix":"tdkmbc-"},"first_launch":{"from_fg":3290,"start_with":"activity","init_to_fg":29},"ddl":{"rfr_wait":8,"net":[1050,0],"from_fg":2225,"timeout_value":3000,"status":"NOT_FOUND"}},"sdk":"34","app_version_name":"3.0.5","device":"emu64a","cksm_v3":"e76d2580db55b97d","af_events_api":"1","cell":{"mnc":260,"mcc":310},"network":"MOBILE","timepassedsincelastlaunch":"-1","open_referrer":"android-app:\/\/com.android.shell","sig":"B8FF0A4347035C4AD65AA8525295390AC0E5C16DAB03DE7BF43D93D1120E0673","uid":"1692868346553-3012660587303683035","lang_code":"en","installDate":"2023-08-24_091216+0000","referrers":[{"api_ver":0,"api_ver_name":"","response":"FEATURE_NOT_SUPPORTED","latency":7,"source":"xiaomi","type":"store"}],"firstLaunchDate":"2023-08-24_091226+0000","ivc":false,"lang":"English","batteryLevel":"100.0","last_boot_time":1692866727018,"install_source_info":{"initiating_package":"com.android.shell"},"product":"sdk_gphone64_arm64","date2":"2023-08-24_141216+0500","counter":"1","date1":"2023-08-24_141216+0500","advertiserId":"1821697f-6d95-44c8-97d2-8545ccfa49e1","advertiserIdEnabled":"true","carrier":"T-Mobile","af_preinstalled":"false","iaecounter":"0","sc_o":"p","tokenRefreshConfigured":false,"platformextension":"android_flutter"}

I/AppsFlyer_6.12.2( 5261): CACHE: caching request with URL: https://tdkmbc-conversions.appsflyersdk.com/api/v6.12/androidevent?app_id=com.app.businessempire.debug&buildnumber=6.12.2
I/AppsFlyer_6.12.2( 5261): CACHE: done, cacheKey: 1692868350961
I/AppsFlyer_6.12.2( 5261): CACHE: Deleting 1692868348652 from cache
D/AppsFlyer_6.12.2( 5261): HTTP: [136727239] POST:https://tdkmbc-conversions.appsflyersdk.com/api/v6.12/androidevent?app_id=com.app.businessempire.debug&buildnumber=6.12.2

D/AppsFlyer_6.12.2( 5261):  payload: <encrypted>
D/AppsFlyer_6.12.2( 5261): HTTP: [136727239] response code:403 Forbidden
D/AppsFlyer_6.12.2( 5261):  body:forbidden
D/AppsFlyer_6.12.2( 5261):  took 830ms
I/AppsFlyer_6.12.2( 5261): CACHE: Deleting 1692868350961 from cache
D/AppsFlyer_6.12.2( 5261): QUEUE: execution finished for CONVERSION-7, result: FAILURE
D/AppsFlyer_6.12.2( 5261): QUEUE: new task added: GCDSDK-GCD-CHECK-8
D/AppsFlyer_6.12.2( 5261): QUEUE: starting task execution: GCDSDK-GCD-CHECK-8
D/AppsFlyer_6.12.2( 5261): [GCD-A01] Loading conversion data. Counter: 1
D/AppsFlyer_6.12.2( 5261): [GCD-A02] Calling onConversionFailure with:
D/AppsFlyer_6.12.2( 5261): Launch status code: 403
D/AppsFlyer_6.12.2( 5261): QUEUE: execution finished for GCDSDK-GCD-CHECK-8, result: SUCCESS
I/AppsFlyer_6.12.2( 5261): onBecameForeground
D/AppsFlyer_6.12.2( 5261): No deep link detected
D/AppsFlyer_6.12.2( 5261): QUEUE: new task added: RC_CDN-UpdateRemoteConfiguration-9
D/AppsFlyer_6.12.2( 5261): QUEUE: starting task execution: RC_CDN-UpdateRemoteConfiguration-9
I/AppsFlyer_6.12.2( 5261): Last Launch attempt: 2023/08/24 09:12:26.596 +0000;
I/AppsFlyer_6.12.2( 5261): Last successful Launch event: 1969/12/31 23:59:59.999 +0000;
I/AppsFlyer_6.12.2( 5261): Sending launch (+5631 ms)
D/AppsFlyer_6.12.2( 5261): CFG: active config is valid, skipping fetch
I/AppsFlyer_6.12.2( 5261): sendWithEvent from activity: android.app.Application
I/AppsFlyer_6.12.2( 5261): Trying to fetch GAID..
D/AppsFlyer_6.12.2( 5261): QUEUE: execution finished for RC_CDN-UpdateRemoteConfiguration-9, result: SUCCESS
I/AppsFlyer_6.12.2( 5261): ******* sendTrackingWithEvent: Launch
W/AppsFlyer_6.12.2( 5261): Exception while collecting facebook's attribution ID.
I/AppsFlyer_6.12.2( 5261): IMEI was not collected.
I/AppsFlyer_6.12.2( 5261): Android ID was not collected.
D/AppsFlyer_6.12.2( 5261): No OAID library
I/AppsFlyer_6.12.2( 5261): AppsFlyer: first launch date: 2023-08-24_091226+0000
D/AppsFlyer_6.12.2( 5261): didConfigureTokenRefreshService=false
I/AppsFlyer_6.12.2( 5261): AppsFlyerLib.sendWithEvent
D/AppsFlyer_6.12.2( 5261): QUEUE: new task added: LAUNCH-10
D/AppsFlyer_6.12.2( 5261): QUEUE: starting task execution: LAUNCH-10

I/AppsFlyer_6.12.2( 5261): LAUNCH-10: preparing data: {"platform_extension_v2":{"platform":"android_flutter","version":"6.10.3"},"country":"US","af_timestamp":"1692868352368","appsflyerKey":"j********************c","isFirstCall":"true","registeredUninstall":false,"targetSDKver":33,"operator":"T-Mobile","isGaidWithGps":"true","app_version_code":"68","model":"sdk_gphone64_arm64","brand":"google","deviceType":"userdebug","deviceData":{"sensors":[{"sT":1,"sV":"The Android Open Source Project","sN":"Goldfish 3-axis Accelerometer"}],"cpu_abi":"arm64-v8a","build_display_id":"sdk_gphone64_arm64-userdebug 14 UPB4.230623.005 10442412 dev-keys","btch":"no","dim":{"xdp":"440.0","ydp":"440.0","x_px":"1080","y_px":"2154","d_dpi":"440","size":"2"},"arch":"","btl":"100.0","cpu_abi2":""},"kef6c6d":"d7e3768ecf65107948191f1b0c531a0d591a1d0d5a1f1f","disk":"3445\/5939","meta":{"host":{"name":"appsflyersdk.com","prefix":"tdkmbc-"},"first_launch":{"net":1939,"from_fg":3290,"start_with":"activity","init_to_fg":29}},"sdk":"34","app_version_name":"3.0.5","device":"emu64a","cksm_v3":"4de7517f3a627c14","af_events_api":"1","prev_session_dur":2,"cell":{"mnc":260,"mcc":310},"network":"MOBILE","timepassedsincelastlaunch":"5","open_referrer":"android-app:\/\/com.android.shell","sig":"B8FF0A4347035C4AD65AA8525295390AC0E5C16DAB03DE7BF43D93D1120E0673","uid":"1692868346553-3012660587303683035","lang_code":"en","installDate":"2023-08-24_091216+0000","referrers":[{"api_ver":0,"api_ver_name":"","response":"FEATURE_NOT_SUPPORTED","latency":7,"source":"xiaomi","type":"store"}],"firstLaunchDate":"2023-08-24_091226+0000","ivc":false,"lang":"English","last_boot_time":1692866727018,"install_source_info":{"initiating_package":"com.android.shell"},"product":"sdk_gphone64_arm64","date2":"2023-08-24_141216+0500","counter":"2","date1":"2023-08-24_141216+0500","advertiserId":"1821697f-6d95-44c8-97d2-8545ccfa49e1","advertiserIdEnabled":"true","carrier":"T-Mobile","af_preinstalled":"false","iaecounter":"0","sc_o":"p","tokenRefreshConfigured":false,"platformextension":"android_flutter"}

I/AppsFlyer_6.12.2( 5261): CACHE: caching request with URL: https://tdkmbc-launches.appsflyersdk.com/api/v6.12/androidevent?app_id=com.app.businessempire.debug&buildnumber=6.12.2
I/AppsFlyer_6.12.2( 5261): CACHE: done, cacheKey: 1692868352931
D/AppsFlyer_6.12.2( 5261): HTTP: [174213309] POST:https://tdkmbc-launches.appsflyersdk.com/api/v6.12/androidevent?app_id=com.app.businessempire.debug&buildnumber=6.12.2
D/AppsFlyer_6.12.2( 5261):  payload: <encrypted>
D/AppsFlyer_6.12.2( 5261): HTTP: [174213309] response code:403 Forbidden
D/AppsFlyer_6.12.2( 5261):  body:forbidden
D/AppsFlyer_6.12.2( 5261):  took 888ms
I/AppsFlyer_6.12.2( 5261): CACHE: Deleting 1692868352931 from cache
D/AppsFlyer_6.12.2( 5261): QUEUE: execution finished for LAUNCH-10, result: FAILURE
D/AppsFlyer_6.12.2( 5261): QUEUE: new task added: GCDSDK-GCD-CHECK-11
D/AppsFlyer_6.12.2( 5261): QUEUE: starting task execution: GCDSDK-GCD-CHECK-11
D/AppsFlyer_6.12.2( 5261): [GCD-A01] Loading conversion data. Counter: 2
D/AppsFlyer_6.12.2( 5261): [GCD-A02] Calling onConversionFailure with:
D/AppsFlyer_6.12.2( 5261): Launch status code: 403
D/AppsFlyer_6.12.2( 5261): QUEUE: execution finished for GCDSDK-GCD-CHECK-11, result: SUCCESS
I/AppsFlyer_6.12.2( 5261): sendWithEvent from activity: android.app.Application
I/AppsFlyer_6.12.2( 5261): Trying to fetch GAID..
I/AppsFlyer_6.12.2( 5261): ******* sendTrackingWithEvent: af_login
W/AppsFlyer_6.12.2( 5261): Exception while collecting facebook's attribution ID.
I/AppsFlyer_6.12.2( 5261): IMEI was not collected.
I/AppsFlyer_6.12.2( 5261): Android ID was not collected.
D/AppsFlyer_6.12.2( 5261): No OAID library
I/AppsFlyer_6.12.2( 5261): AppsFlyer: first launch date: 2023-08-24_091226+0000
D/AppsFlyer_6.12.2( 5261): didConfigureTokenRefreshService=false
I/AppsFlyer_6.12.2( 5261): AppsFlyerLib.sendWithEvent
D/AppsFlyer_6.12.2( 5261): QUEUE: new task added: INAPP-12
D/AppsFlyer_6.12.2( 5261): QUEUE: starting task execution: INAPP-12

I/AppsFlyer_6.12.2( 5261): INAPP-12: preparing data: {"country":"US","af_timestamp":"1692868377471","appsflyerKey":"j********************c","af_events_api":"1","isFirstCall":"true","registeredUninstall":false,"targetSDKver":33,"cell":{"mnc":260,"mcc":310},"operator":"T-Mobile","network":"MOBILE","sig":"B8FF0A4347035C4AD65AA8525295390AC0E5C16DAB03DE7BF43D93D1120E0673","uid":"1692868346553-3012660587303683035","eventValue":"{\"af_city\":\"Lahore\",\"af_country\":\"Pakistan\"}","isGaidWithGps":"true","lang_code":"en","installDate":"2023-08-24_091216+0000","app_version_code":"68","firstLaunchDate":"2023-08-24_091226+0000","ivc":false,"eventName":"af_login","model":"sdk_gphone64_arm64","lang":"English","brand":"google","deviceType":"userdebug","last_boot_time":1692866727018,"install_source_info":{"initiating_package":"com.android.shell"},"product":"sdk_gphone64_arm64","deviceData":{"cpu_abi":"arm64-v8a","build_display_id":"sdk_gphone64_arm64-userdebug 14 UPB4.230623.005 10442412 dev-keys","dim":{"xdp":"440.0","ydp":"440.0","x_px":"1080","y_px":"2154","d_dpi":"440","size":"2"},"arch":"","cpu_abi2":""},"date2":"2023-08-24_141216+0500","counter":"2","date1":"2023-08-24_141216+0500","advertiserId":"1821697f-6d95-44c8-97d2-8545ccfa49e1","advertiserIdEnabled":"true","carrier":"T-Mobile","disk":"3445\/5939","kef656c":"cfb6331289bc189048191f1b0c531a0d591a1d0d5a1f1e","sensors":{"er":"na"},"af_preinstalled":"false","iaecounter":"1","sc_o":"p","tokenRefreshConfigured":false,"sdk":"34","app_version_name":"3.0.5","device":"emu64a","cksm_v3":"f47b31f59569b46e","platformextension":"android_flutter"}

I/AppsFlyer_6.12.2( 5261): CACHE: caching request with URL: https://tdkmbc-inapps.appsflyersdk.com/api/v6.12/androidevent?app_id=com.app.businessempire.debug&buildnumber=6.12.2
I/AppsFlyer_6.12.2( 5261): CACHE: done, cacheKey: 1692868379733
D/AppsFlyer_6.12.2( 5261): HTTP: [174931728] POST:https://tdkmbc-inapps.appsflyersdk.com/api/v6.12/androidevent?app_id=com.app.businessempire.debug&buildnumber=6.12.2
D/AppsFlyer_6.12.2( 5261):  payload: <encrypted>
D/AppsFlyer_6.12.2( 5261): HTTP: [174931728] response code:403 Forbidden
D/AppsFlyer_6.12.2( 5261):  body:forbidden
D/AppsFlyer_6.12.2( 5261):  took 1056ms
I/AppsFlyer_6.12.2( 5261): CACHE: Deleting 1692868379733 from cache
D/AppsFlyer_6.12.2( 5261): QUEUE: execution finished for INAPP-12, result: FAILURE

@github-actions
Copy link

👋 Hi @irfan-429 and Thank you for reaching out to us.
In order for us to provide optimal support, please submit a ticket to our support team at support@appsflyer.com.
When submitting the ticket, please specify:

  • ✅ your AppsFlyer sign-up (account) email
  • ✅ app ID
  • ✅ production steps
  • ✅ logs
  • ✅ code snippets
  • ✅ and any additional relevant information.

@AhmadIzaz
Copy link

Same. I am unable to see the events as well. Somehow, the non organic install is being detected correctly on the portal

@AhmadIzaz
Copy link

AhmadIzaz commented Jul 19, 2024

It looks like the the testing part on the dashboard is still broke. I contacted the support and they said the same thing that data is correctly fine in our database , we will forward this issue to sdk team. Its been a year from today till this issue is being created. Looks like they have no interest in fixing this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants