Am working on android project.In that I have to integrate tapjoy sdk.I did all the steps mentioned in Tapjoy - Knowledge center.After my tapjoy integration,I am getting empty white view while running my app.I didnt get any errors.But i am getting a internal exception like
tapjoy disabled because googleplay service not found
Please help me to sole this.I added already googleplay services to my project.I added the code like
TapjoyConnect.requestTapjoyConnect(getApplicationContext(),
"3bc9e039-47ce-xxxxxxxxxxx",
"eKouC0EGNyyyyyyyyyyyyyyy",
connectFlags,
new TapjoyConnectNotifier() {
@Override public void connectSuccess() {
//The Connect call succeeded
Log.i(TAG, "The Connect call succeeded ");
}
@Override public void connectFail() {
//The connect call failed
Log.i(TAG, "The connect call failed");
}
In this am getting 'The connect call failed' log text.What I have to chage?