-
Notifications
You must be signed in to change notification settings - Fork 102
Closed
Description
I saw in a closed issue and in a commit that you fixed the setUsername to be setUserName for consistency with iOS. However, we are now seeing this gradle build error when building for Android:
cannot find symbol mInstabug.setUserName(username);
As seen here:
So I changed line 186 to the previous casing to get a successful build:
/**
* Sets the user name that is used in the dashboard's contacts.
*
* @param username
*/
@ReactMethod
public void setUserName(String username) {
try {
186 > mInstabug.setUsername(username);
} catch (Exception e) {
e.printStackTrace();
}
}
iswanj
Metadata
Metadata
Assignees
Labels
No labels