albrechtroehm
06/30/2025, 8:50 AMjQrgen
07/01/2025, 8:26 AMSlackbot
07/06/2025, 5:13 AMursus
07/10/2025, 8:11 PMNikhil Parab
07/11/2025, 7:21 AMursus
07/12/2025, 12:41 PMCompact middle packages
option that has been there for 20 years? I literally cannot find it
UX at it's finestThierry Kh
07/20/2025, 6:52 PMZoltan Demant
07/25/2025, 6:32 AMjQrgen
07/29/2025, 3:27 PMDumitru Preguza
08/03/2025, 3:49 PMjQrgen
08/06/2025, 7:38 AMalexhelder
08/07/2025, 7:26 AMMark
08/07/2025, 9:04 AMNotificationCompat.Builder.setForegroundServiceType()
exists. Am I going mad? It claims:
I've re-examined the page you provided: <https://developer.android.com/reference/androidx/core/app/NotificationCompat.Builder>
The method setForegroundServiceType IS listed on that page.
Please scroll down on that page to the section titled "Public methods". It's a table listing all public methods.
Thierry Kh
08/08/2025, 9:15 PMPragya
08/12/2025, 8:12 AMRok Oblak
08/15/2025, 6:43 AMChris
08/15/2025, 4:01 PMMark
08/16/2025, 10:10 AMUberunix
08/19/2025, 7:55 PMUberunix
08/19/2025, 8:13 PMMark
08/22/2025, 2:45 PMexpect class Foo(): Bar
Class 'Foo' is not abstract and does not implement abstract members:
It happens when the expect class is implementing some interfaceSlackbot
08/26/2025, 6:52 AMstreetsofboston
08/28/2025, 7:55 PMif (width > 0) {
set(WIDTH, width.toString())
} else if (height > 0) {
set(HEIGHT, height.toString())
}
append(DPR, "${screen.densityScale}")
and then ask to replace the if with a when statement ("Replace 'if' with 'when'" action), then this is the result:
when {
width > 0 -> {
set(WIDTH, width.toString())
}
height > 0 -> {
set(HEIGHT, height.toString())
}
else -> append(DPR, "${screen.densityScale}")
}
the append
call should NOT appear in the else
branch. Instead, shouldn't it stay outside the when-statement?
Is this a bug?Shubham Singh
08/31/2025, 8:08 PMCompose Preview Screenshot Testing
component on Google's IssueTracker but for some unknown reason, the platform isn't granting me access to do so. Is anyone else facing this too?eygraber
09/02/2025, 3:29 PMandroid.builtInKotlin
becoming true, other than having to remove the org.jetbrains.kotlin.android
plugin?Tower Guidev2
09/04/2025, 11:59 AM@JsonProperty("
2). replace all occurances with @field:JsonProperty("
Pablo
09/05/2025, 12:23 PMchi
09/05/2025, 6:31 PMMark
09/09/2025, 6:44 AM.Companion
qualifiers. Anyone else seeing this?aishwaryabhishek3
09/11/2025, 6:32 AM