Hello, I need to get the businessID. I did in Android Studio the next code but I don’t sure it’s correct:
public IInterface asBinder(Intent intent){
return mBinder;
}
public IPoyntBusinessService.Stub asBinder= new IPoyntBusinessService.Stub() {
@Override
public void getActivationState(IPoyntBusinessActivationListener iPoyntBusinessActivationListener) throws RemoteException {
}
@Override
public void getBusinessUser(long l, IPoyntBusinessCustomerListener iPoyntBusinessCustomerListener) throws RemoteException {
}
public void getBusinessById(String businessId, IPoyntBusinessReadListener callback) throws RemoteException {
Log.d(TAG, "getBusinessById:" + businessId);
}
};
After, I was thinking about get the businessId in the cloudApp but I watched in an example that the ID is declarated for example:
final String businessId = “24eb9f63-cb3e-4f5c-a0f9-5cf70dc53f62”;
But how get this id?
“24eb9f63-cb3e-4f5c-a0f9-5cf70dc53f62”;