Alexandre Roux

Results 17 comments of Alexandre Roux

Android (https://developer.android.com/reference/android/bluetooth/BluetoothGatt#readRemoteRssi()) seems to support it. and I guess iOS. I could help in the implementation (PR) if needed/wanted/accepted

In my specific issue, it turns out that replacing: ```dart final iv = IV.fromLength(16); ``` by ```dart final iv = IV.allZerosOfLength(16); ``` fixes my test. i.e. the following test works...

Thanks for the support, I know maintaining open source project is a pain ! You might want to get other contributors/publishers if you cannot commit to it in the the...

I use the following ugly workaround (cross posted on SO) that gets me the directory name of the current test script if I'm running it directly or with pub run...

One trick would be to allow to specify the "user_id" during the login (gapi.auth.authorize call in implicit.dart). Unfortunately this parameter cannot be specified in the various api provider. Currently that...

So I made a quick app to support passing a userId in clientViaUserConsent. What it ends up doing is changing the json during the _login call ``` javascript if (userId...