Ivan
05/18/2025, 4:37 PMGodwise
05/21/2025, 9:17 PMFilippo De Pretto
05/27/2025, 2:47 PMKevin
05/27/2025, 7:13 PMDen Drobiazko
05/27/2025, 9:37 PMSatyam Gondhale
05/28/2025, 12:31 PMzak.taccardi
05/28/2025, 6:46 PMcom.android.builder.model.Version.ANDROID_GRADLE_PLUGIN_VERSION
is deprecated, with a use com.android.VERSION instead
- but I don't see it on the class path at all.
What am I missing? Use case is to check the current AGP version programmaticallyAnuj Chahal
05/30/2025, 3:51 PMSatyam Gondhale
06/02/2025, 11:32 AMSlackbot
06/05/2025, 9:11 AMAmir Golmoradi
06/06/2025, 10:44 AMDavid Bauer
06/07/2025, 6:17 AMAngelyn
06/07/2025, 7:16 PMAngelyn
06/07/2025, 7:17 PMTower Guidev2
06/09/2025, 12:19 PMandroid.webkit.WebView
to show web content from within my application
i have a usecase where i need to detect if my users download a file while they are browsing
i cannot see any associated callbacks that support this functionallity
is there any way to detect a user initiated download and what file they are downloading?Edwin
06/10/2025, 9:52 PMCaused by: org.koin.core.error.InstanceCreationException: Could not create instance for '[Singleton: 'com...UpdateInteractor']'
base on the full trace log, it seems to be triggered by a dependency required on MainActivity -> onStart()
But I have all the injectors well defined on the Koin modules.
After a lot of back and forth... I found a way to reproduce similar issue in debug env, which is in the Koin module class, when creating the module setting the parameter createdAtStart = true
(by default false), it makes the app crash when it's starting... throwing similar trace log than prod.
It seems to be like a race condition issue, but still figuring out what is the real cause of that.
If anyone have faced any similar issue dealing with Koin dependencies, I would appreciate any help.
I found someone here in the past faced similar issue, but didn't post any solution.Sargun Vohra
06/11/2025, 8:48 PMsuspend fun
in a LaunchedEffect
, and the client is backed by Ktor (via Ktorfit) and the OkHttp engine. As far as I can tell, these network calls shouldn't be blocking the main thread, but still the UI stutters when I scroll (triggering network calls as list items load).
The problem only happens on Android. The demo on iOS, Desktop (JVM), macOS (native), JS, and WASM builds all have a totally smooth UI.
I've tried:
• Explicitly setting <http://Dispatchers.IO|Dispatchers.IO>
◦ No change. Verified in Ktor source that the default is IO, so that makes sense.
• Switching to the CIO
engine on the JVM target.
◦ No change, still stutters when loading data on Android
• Running as profileable to debug further
◦ The problem disappears when I run a profileable build; scrolling is smooth while data loads, so it's unclear to me how to debug further or gather data on the issue
You can repro by cloning https://github.com/PokeAPI/pokekotlin and running the demo app (the :demo-app
module)Harry
06/11/2025, 11:01 PMTower Guidev2
06/12/2025, 11:09 AMabstract class WindowActivity : AppCompatActivity(), CoroutineScope {
protected abstract var libraryVariable: LibraryType?
is there any way i can change the LibraryType when overriding this variable?
so that i have in my android app
override var libraryVariable: ApplicationType? = null
Nitesh Singh
06/13/2025, 9:34 AMNitesh Singh
06/13/2025, 11:08 AMArkadii Ivanov
06/15/2025, 7:06 PMNavigationEventDispatcher
is a successor to OnBackPressedDispatcher
?Satyam Gondhale
06/16/2025, 8:08 AMwire {
sourcePath {
srcDir("src/commonMain/proto")
}
kotlin {
rpcRole = "client"
sourcePath("src/commonMain/proto")
}
kotlin {
rpcRole = "server"
rpcCallStyle = "blocking"
sourcePath("src/commonMain/proto")
}
}
Aman
06/17/2025, 11:09 AMAsadullah Nadeem
06/17/2025, 11:10 AMRohit Verma
06/18/2025, 7:01 AMIvan
06/19/2025, 11:23 AMmuhamed khyamey
06/25/2025, 2:09 PMSatyam Gondhale
06/26/2025, 7:39 AMandroid.app.RemoteServiceException$ForegroundServiceDidNotStartInTimeException: Context.startForegroundService() did not then call Service.startForeground(): ServiceRecord{b7b244e u0 com.myapp.client.test/com.myapp.client.app.services.HnavBootCompletedService}
DutchPotSauce
06/26/2025, 6:55 PM