After checking the phone number with the numbers on Twitter, I get two instances of my application in recent actions

Hiii, I reviewed the Digits documentation for this fix again and again, but could not find it. When I open the Digit Mobile Test screen and close it, I get two instances of my application on the last screen.

This is how I set up the numbers.

In the application,

Fabric.with(this, new TwitterCore(authConfig), new Digits()); 

And with activity

 DigitsAuthButton digitsButton = (DigitsAuthButton) findViewById(R.id.btn_phone_auth); digitsButton.setAuthTheme(R.style.CustomDigitsTheme); AuthCallback authCallback = new AuthCallback() { @Override public void success(DigitsSession session, String phoneNumber) { //validated number processing }; digitsButton.setCallback(authCallback); 

Need help with this.

+6
source share
1 answer

This issue has been resolved in Digits v1.10.0.

 compile('com.digits.sdk.android:digits: 1.10.0@aar ') { transitive = true; } 
0
source

All Articles