Skip to main content

Android Agent V1.X

Comments

2 comments

  • Sergey

    1) AgentConfigService.handleNotification(String, NotificationManager, Notification) uses Notification.setLatestEventInfo(Context, CharSequence, CharSequence, PendingIntent) that was removed from 23 API:

    https://developer.android.com/sdk/api_diff/23/changes/android.app.Notification.html

    so you can't use compileSdkVersion >23

    2) to avoid NullPointerException that library throws inside of

    EmbeddedAgent.onResume(context); 

    you need to add try-catch:

    try {
    EmbeddedAgent.onResume(context);
    } catch (NullPointerException e) {
    e.printStackTrace();
    }

    3) this library uses Apache client for internet communication and doesn't provide the way to replace it

    0
  • Mark Jones

    Sergey,

    If you take a look at our latest version https://app47.zendesk.com/hc/en-us/articles/360000626913-Android-Agent-Version-2-X, you should find these issues have been resolved. Please let us know if you have any trouble upgrading.

    0

Please sign in to leave a comment.