Yoav Sternberg

Results 21 issues of Yoav Sternberg

SwipeRefreshLayout (from support v4 19.1) can has only 1 child. Currently my solution is to check if the parent is that, and then get its parent (should also check if...

``` java mEmptyLayout.setEmptyMessage(emptyMessage); mEmptyLayout.setShowEmptyButton(showEmptyButton); mEmptyLayout.setEmptyButtonClickListener(listener); mEmptyLayout.showEmpty(); ``` That is my code, when showEmptyButton is true. The problem is that the empty button isn't shown

In kitkat you can select files directly from google: content://com.google.android.apps.docs.storage/document/acc%3D4%3Bdoc%3D2279 is there a way to get the file? public static boolean isGoogleDriveDocument(Uri uri) { return "com.google.android.apps.docs.storage".equals(uri.getAuthority()); }

I have a [library](https://gitlab.com/yoav-sternberg/mashov-api/blob/master/kobalt/src/Build.kt) that uses a dependency from custom repo: ``` kotlin val repos = repos("https://dl.bintray.com/kittinunf/maven/") ``` However, the pom file generated from `kobaltw uploadJcenter` doesn't have this repo...

Is there a way to use proguard for repacking a package (com.test -> com.prod) or renaming specific classes, without obfuscating the code?

Maybe if night mode is enabled it can show dark background.

question

Add support for what's new (E.G: dialog, property...)

Add support for multi-user server

IDA 9.0 Given the following example: ```py from __future__ import annotations from herapi import * test_pattern = CallInsnPat(HelperPat('objc_release'), ignore_arguments=True) class ItemRemovalScheme(Scheme): def on_matched_item(self, item, ctx: MatchContext) -> ASTPatch|None: return ASTPatch.remove_instr(item)...

Given the following code: ```jsx function App() { const [count, setCount] = useLocalStorageState('count', { defaultValue: 0 }) if (count > 5) { setCount(0) } return { setCount((count) => count +...

bug