The following code gives exception “Internal Client Exception (Message : " null”).
BackendlessUser user = new BackendlessUser();
user.setEmail(email);
user.setPassword(password);
try {
Backendless.UserService.register(user);
}
catch(Exception e)
{
Toast.makeText(getApplicationContext(),e.getMessage(),Toast.LENGTH_LONG).show();
}
I wrote Network Permissions:
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
I wrote following code at Application class:
String appVersion = "v1";
Backendless.initApp(this, "******************************", "*****************************, appVersion);
What can be the problem?