Or Dvir

Results 21 comments of Or Dvir

same problem here (red rectangle in picture). have you found a solution? ![capture](https://cloud.githubusercontent.com/assets/17179542/22649808/522ab744-ec85-11e6-857c-94a6a897a1b2.PNG)

a few days ago i came up with something: i removed `KoinTestRule', the `startKoin` block, and `stopKoin` - leaving only `loadKoinModules` and `unloadKoinModules` ``` @Before fun beforeAndroidTest() { loadKoinModules(MyApplication.testModule) }...

better? it looks exactly the same... only difference is your using mocks and im using fakes. anyways glad it works for you

this post is 4 months old but im having the same issue! @lch2014a when you say "fix starting degree", what do you mean? currently i have an issue where i...

@stephanenicolas any recommendations?

same here. ``` ``` produces `AAPT: error: resource drawable/ic_list_regular_white (aka my.pacjage.name:drawable/ic_list_regular_white) not found.`

i dont understand, will adding kotlin to the my app fix the problem? when you say "once i will fix everything" you mean to make it work even if my...

i know this is late... but maybe its related to this? https://github.com/gilgoldzweig/EasyTabs/issues/14

not sure if you found an answer yet... this is how you would do it: `mTabs.getViewPager().setCurrentItem(tabToSelect);` however there is a bug where even though the content displayed is fine, the...

this is working: ``` EasyTabsBuilder.with(mTabs) .addTabs(tabsArray) .setTabLayoutScrollable(true) .Build(); mTabs.post(new Runnable() { @Override public void run() { mTabs.getViewPager().setCurrentItem(tabToSelect); } }); ```