Aleksey Mikhailov

Results 348 comments of Aleksey Mikhailov

hi. maybe you want not socket.io but raw websockets? for websockets you can use https://ktor.io/docs/client-websockets.html if you want socket.io but with specific path - you can send PR with this...

hi. here research required. if you want help - please create fork moko-resources, add new sample with paparazzi usage, where we will reproduce issue and create pull request. then we...

hi. moko-resources not write strings into **main** bundle. it write strings and other resources to self bundle inside framework. as i see `LocalizedStringResource` works on bundle base, so you can...

it's expected behaviour - `android.defaults.buildfeatures.resvalues=false` disables generation of `R` class, so generated android resources not processed by android gradle plugin and can't be used. what you expect when you `android.defaults.buildfeatures.resvalues`...

just call providePermission multiple times ``` class ViewModel(val permissionsController: PermissionsController): ViewModel() { fun onPhotoPressed() { viewModelScope.launch { try { permissionsController.providePermission(Permission.GALLERY) permissionsController.providePermission(Permission.CAMERA) // Permission has been granted successfully. } catch(deniedAlways: DeniedAlwaysException)...

hi. can you reproduce this issue on samples?