Alex Mofer

Results 3 issues of Alex Mofer

This is BillingFlowParams: --- ```java BillingFlowParams.newBuilder() .setProductDetailsParamsList(productDetailsParamsList) .setSubscriptionUpdateParams( BillingFlowParams.SubscriptionUpdateParams.newBuilder() .setOldPurchaseToken(oldPurchaseToken) .setSubscriptionReplacementMode( BillingFlowParams.SubscriptionUpdateParams.ReplacementMode.CHARGE_FULL_PRICE) .build()) .build() ``` If subscribe again: --- ![Screenshot_20240119-183701](https://github.com/android/play-billing-samples/assets/1797463/11888cf7-9af9-4ffa-aea9-02d7549538c5) ![Screenshot_20240119-183715](https://github.com/android/play-billing-samples/assets/1797463/3ec049a6-92d2-4112-8b34-c9fc78d019df) If subscribe other base plan in this Subscription: ---...

**Description:** Animatable drawable not keep running after expand hide menu items. Drawable of menu item icon set wrong callback. **Expected behavior:** Drawable callback MUST BE CORRECT. **Source code:** ```java private...

bug
Widget: Menu

在账户登录并点击授权按钮后,此时界面出现“正在验证...”对话框,对话框消失时,逻辑上授权已完成,但设置的OnCompletedListener的onCompleted方法未被调用。 使用场景: ``` new BoxSession(activity).authenticate(activity, listener); ``` 若在此时杀掉并重启进程再重新创建BoxSession并调用authenticate,则此时会正常回调OnCompletedListener的onCompleted方法。 若不杀死进程,就直接重新创建BoxSession并调用authenticate,无任何反应,从authenticate返回的Task也无法做出有效判断。 因此无法绕过也无解决方案。