I am not able to get the user account email after the authentication:
I have this code (in Kotlin) on my onResume
mDBApi!!.session.finishAuthentication()
val accessToken = mDBApi!!.session.oAuth2AccessToken
val client = DbxClientV2(DbxRequestConfig.newBuilder("dropbox/MyAppName").build(), accessToken)
val email = client.users().currentAccount.email
but the getCurrentAccount() throws me 'android.os.NetworkOnMainThreadException'.
How can I solve this to get the user account email?