HeyAlex

Results 18 comments of HeyAlex

Hi! Yes, it's always opens to half of a screen. We probably need to make an api for half ratio to let change this behavior. Need to make an api...

Hi Hassan. Sorry for that late response. The problem that you described is more about Bottom Sheet, and not about library. The bad thing that with dialog that provides that...

Hi @eboye . What's means "doesn't works in release". I see that you post a lot of sources. Is it possible to make a sample with full source that can...

"I'm also thinking on using the service if that's even good approach." - this library is using service, since it's only a solution if you need to update widget as...

woah, it's probably problem with proguarding. can you try with custom proguard rule to keep whole classes which extends _WidgetUpdater_? Something like: ``` -keep class ** extends heyalex.widgethelper.** -keep class...

@rootsavaris we are using a custom test runner as well, and it works well via inheritance. Just make something like [here](https://github.com/pedrovgs/Shot/blob/7bd9a4b18e5f31bc07c329d6f9c93da47769b91b/shot-consumer/app2/src/androidTest/java/com/karumi/TestRunner.kt) in sample project

@soyo2 just inherit from `ShotTestRunner` and it will works as expected

@soyo2 sorry for late reply. it's still possible, just copy/paste code from `ShotTestRunner` and add dependency for plugin `com.facebook.testing.screenshot:plugin`, since `ScreenshotRunner` is added by this plugin. After that you don't...