Adrian Stanescu

Results 10 comments of Adrian Stanescu

@felipeinf this was working when i developed it. right now the project that i worked on that relied on this repo is on hold until later in autumn when i...

i had no problems with both go.mod this repo or go.mod a fork. here's how i did it: go mod this repo: ``` go.mod require ( github.com/ahmdrz/goinsta/v2 v2.4.5-0.20191021103459-79702a8f3eda ) ```...

hi. Live.Create() Live.Start() Live.End() available here: https://github.com/kmlx/goinsta/commit/a0b984144034d197481ab80294d372f97309b229 this is WIP until I move the rest of the methods.

pull request for posterity: https://github.com/ahmdrz/goinsta/pull/287 WIP until the rest is done.

i'm not sure lazy loading is the problem, as I use it with React's lazy loading without a problem. what I suspect is going on is babel throwing an error...

@JeremyBrent fairly sure at this point that this issue has to do with configuring babel inside node, nothing to do with the plugin.

@krishnarastogi i use this one in package.json ``` "@babel/register": "7.15.3", ``` and my config hasn't changed since my last comment. and it still works. i assume people should try different...

+1 the following solution is finicky at best: `AudioManager myAudioManager = (AudioManager) getSystemService(Context.AUDIO_SERVICE);`

depends on the device. on nexus7 2013 works perfectly. same for others. but mostly samsung devices don't work.

and that should work, but the problem relies with muting the sound _while_ in streaming. For example: ``` AudioManager myAudioManager = (AudioManager) getSystemService(Context.AUDIO_SERVICE); myAudioManager.setMicrophoneMute(true); ``` this doesn't work on all...