Adolfo Rodriguez
Adolfo Rodriguez
This is how a did it bmb.findViewById(R.id.button).setOnClickListener(new View.OnClickListener() { // hack to hide on click @Override public void onClick(View view) { if (bmb.isBoomed()) bmb.reboom(); else bmb.boom(); } });
The problem is that when I reopen the app (onResume), Android calls onRequestPermissionsResult with empty arrays for permissions and grantResults. "When the user responds to your app's permission request, the...
Hi @NoNews, I mean, scenario: the app is showing the permission request dialog to the user and, in this moment, the user clicks the button in the middle (https://i.stack.imgur.com/RPdkA.png) to...
This is a kind of parent activity ``` public abstract class APermissionActivity extends AppCompatActivity { private static PermissionHelper permissionHelper = null; protected void initializePermission() { if (permissionHelper == null) permissionHelper...
The jar in maven is forbidden to me https://dl.bintray.com/ethereum/maven/org/ethereum/ethereumj-core/1.12.0-RELEASE/ethereumj-core-1.12.0-RELEASE.jar even by adding the repo to the pom as in https://github.com/binance-chain/java-sdk/pull/108
Just a comment. It works but the fillPercent should not be % but per unit, e.g. 0.5f
another case that breaks for me is a link in docusaurus.config.js in the navbar `{ to: '/docs/mypage', label: 'MyPage', position: 'right' }` fixed with `{ type: 'doc', docId: 'mypage', label:...
Uhm, this is what I understood as the best practice because probably everything populated in the UI is corresponding to the specific wallet/chain configuration. So, if the wallet account changes,...
Yes, it was the way to go time ago, but now looks to be changed. https://github.com/MetaMask/metamask-extension/issues/3599?ref=decenter-blog https://medium.com/metamask/no-longer-reloading-pages-on-network-change-fbf041942b44 https://medium.com/metamask/breaking-change-no-longer-reloading-pages-on-network-change-4a3e1fd2f5e7 I can agree that today is not the best practice......... if you...
yes, in order to switch account, after disconnect wallet, i have to manually go to metamask and disconnect the account myself. Otherwise, the next time I connect, web3-onboard uses directly...