maganap
maganap
@NinoSkopac I'm using 5.2.0 and I still have this issue. Actually it happened something wrong when using `NODE_APP_INSTANCE `: after restart, it started counting from 1 or 2 instead of...
Seems related: https://github.com/stripe/stripe-android/issues/5058
@milcarzgrzegorz I ended up adding launcher, tab bar and notification icons using the [Create App Icons with Image Asset Studio](https://developer.android.com/studio/write/image-asset-studio#create-adaptive) from your link. After some tweaking to the XMLs it...
@Ashwin-Kapes `dialogflow-fulfillment@^0.6.1` does not include fixes from #173. Although it's already merged, you'll need to wait until package is bumped to 0.6.2 and published to be available on `npm`. In...
actions-on-google-nodejs library is only useful if you're working with Actions-on-Google alone, but you mention nothing about integrations, which is what I believe most people were using this dialogflow-fulfillment-nodejs library for....
Any news on this case? DialogFlow UI does handle 2 Facebook payloads correctly. It's only this library that's complaining. As a use case, I use multiple payloads to send some...
@jdpowell1 Thanks! I noticed about #173 and downloaded latest commit (`aaade16` at the moment), it does fix the `Text + Payload` case when `sendAsMessage:true`, like: ```js agent.add( new Text('Hello there')...
omg... In case it's of any use, here's my session when testing a draft version of AOG: (which does work) `projects//agent/sessions/ABwppHGISLcVmEr57_QqQ9bkadlOXito_HdsZFI1Kps11B-sa_HJeBRBXMaen2dlubYeIy0pn-xYcL3vbsoKvb4nt0_K80k` And here's the session that arrives when the review...
This works for me inside a class that extends `StatelessWidget`: ```dart Widget _numberPicker() { Picker picker = Picker( adapter: NumberPickerAdapter(data: [ NumberPickerColumn(begin: 0, end: 9), NumberPickerColumn(begin: 0, end: 9), ]),...
Hi @baumblatt ! Thanks for your reply. Sure! I can try and make a PR for it. But what I did is not actually solving my problem yet as I...