Gracenote GNuser always returning null

51 Views Asked by At

I am new to the Gracenote Api and I was trying to implement it in my Android app after installing the native libraries.

When I try to create a GnUser object it always returns null.

What I am doing is this in my OnCreate:

try {
    gnManager = new GnManager( ActivitySoundSearch.this, gnsdkLicense, GnLicenseInputMode.kLicenseInputModeString );
    gnUser = new GnUser(gnsdkClientId, gnsdkClientTag);
}
catch (Exception e){e.printStackTrace;}

However, GnUser is always null.

0

There are 0 best solutions below