Róbert Papp

Results 398 issues of Róbert Papp

I have this dependency: ```gradle testImplementation("com.jakewharton.dex:dex-member-list:4.1.1") ``` and I'm getting an exception when calling from Kotlin (at 1.4.32) I'm using this code ```kotlin fun dexMethod(className: String, methodName: String): Matcher =...

``` java DiskLruCache.Editor editor = getDiskCache().edit(key); try { File file = editor.getFile(0); new FileOutputStream(file).write(data); editor.commit(); } finally { editor.abortUnlessCommitted(); } ``` Now, `commit` calls `completeEdit` which has a line `dirty.renameTo(clean);`...

`test.kt`: ```kotlin private val supportedLocales = setOf( "en", "pt-br", "nb", "sv", "nl", "da" ) ``` The following is essentially what `gradlew :lib:dexDebug` does on an Android project: ```shell # c:\dev\tools\android-studio-40\plugins\Kotlin\kotlinc\bin\...

Hi, I just read these 3 release notes, I thought I would call it out: https://developer.android.com/studio/releases/gradle-plugin#build-variant-publishing Does this mean most of this plugin can be replaced with standard Gradle publishing...

documentation

The current [resolution path](https://github.com/chrisjenx/Calligraphy#font-resolution) doesn't allow for exceptions. If I define the font in the theme to get it across the app, it's not possible to disable it on lower...

Thoughts? I'm thinking about - [ ] `android.annotation.TargetApi` https://developer.android.com/reference/android/annotation/TargetApi - [ ] `tools:targetApi` https://developer.android.com/studio/write/tool-attributes#toolstargetapi - [ ] `androidx.annotation.RequiresApi` - [ ] `androidx.annotation.ChecksSdkIntAtLeast` - [ ] `androidx.test.filters.SdkSuppress` - [ ] Robolectric's...

Hey, in the past I researched a similar project in the past, and got some more info: ~https://docs.google.com/spreadsheets/d/1qOYY6km7TU6O6yBgUuDID6CQ5vox0rsWDrE_4Ikh28Y/edit?usp=sharing~ Moved to Notion: https://twisterrob.notion.site/53fadafff3704e938266aa1fe1c93c92 I wonder if it would be useful to...

To make it more real, can you try add Android UI tests for each feature module? It would be awesome if we could find a way to separately tests screens...

See for example: http://www.methodscount.com/?lib=com.vipulasri%3Aticketview%3A1.0.2 Between 1.0.0 and 1.0.2 the method count went from 93 to 125. If you read the charts (without carefully examining the numbers) you can observe that...