Fiksu SDK Integration

I am trying to implement the Fiksu SDK for Android and iOS.

I can add a code for registering and buying a track:

FiksuTrackingManager.uploadRegistration(Context, FiksuTrackingManager.RegistrationEvent.EVENT1);

FiksuTrackingManager.uploadPurchase(Context, FiksuTrackingManager.PurchaseEvent.EVENT1, 0, "USD");

In iOS, I can get the logs in the console, but in android I only get the logs that trigger the event. How can I check logs in Android?

Also how to track application events in the Fiksu dashboard?

They also mentioned add client id, where do I get the client ID?

if anyone has implemented it please help me how to do it?

+4
source share
1 answer

It may be too late, but it can help someone who gets on this post.

Fiksu SDK android .

Android?

SDK , , , , .

11-25 10:04:31.010  21588-23132/ D/FiksuTracking? Event: Resume
11-25 10:04:32.320  21588-23132/ D/FiksuTracking? Successfully uploaded tracking information.
11-25 10:05:40.500  21588-23383/ D/FiksuTracking? Event: Purchase
11-25 10:05:42.180  21588-23383/ D/FiksuTracking? Successfully uploaded tracking information.

Fiksu?

, Android-, , . - Fiksu, .

:

  • Android .
  • .
  • - , , .

, ?

ClientId - . , , (e.i. ). , , .

FiksuTrackingManager.setClientId(Context, "XXX");

: " XXX , , - 64 . , , , . setClientID, , . , , , Fiksu Client, ."

, - , , , ?

, : Fiksu SDK android.

  • Downlaod SDK.
  • SDK .
  • isntall ( ). , AndroidManifest.xml. SDK, :

fiksu :

<receiver android:name="com.fiksu.asotracking.InstallTracking"
android:exported="true">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
<!-- Forward to other receivers -->
<meta-data android:name="forward.1"
android:value="com.google.android.apps.analytics.AnalyticsReceiver" />
<meta-data android:name="forward.2" android:value="com.mypackage.thirdparty.MdotmReceiver" />
</receiver>

AndroidManifest SDK fiksu.

<meta-data android:name="FiksuDisableReceiverCheck" android:value="true" />
  1. AndroidManifest.

    android.permission.INTERNET

    android.permission.READ_PHONE_STATE

  2. SDK. onCreate() .

    FiksuTrackingManager.initialize();

  3. Google Play .

+2

All Articles