As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
Sorry for the slow response on this, I think it should be under Java to have the right eyes on it.
E
Edward
said
over 8 years ago
Hey, sorry for the delay in getting back to you!
Can you take a look at the troubleshooting guide to enable debug logging, so that you can see the raw requests and responses in logcat? Then, can you post those here? That should help me figure out what might be going on!
r
rhaul
said
over 8 years ago
I'm also facing the same issue.
The **arg **variable returns null value all the time.
Fahid
i am using this code:
AsyncAppData aggregate = mKinveyClient.appData("business- pages", EntityBuisnessTypes.class);
Query myQuery = new Query();
ArrayList fields = new ArrayList();
fields.add("company_name");
aggregate.count(fields, myQuery, new KinveyAggregateCallback() {
@Override
public void onSuccess(Aggregation arg) {
// TODO Auto-generated method stub
Log.i("TAG", "got: " +arg.results[0].get("_result"));
}
any help?