Виталий Перятин
07/01/2019, 6:30 AMMatej Drobnič
07/01/2019, 12:03 PMCan't attach profiler agent dynamically. Please try to enable it persistent
.
Adding provided flags to vmoptions causes studio to just flat out not start.voben
07/01/2019, 2:30 PMLivedata.observe()
extension, and whenever I do a ‘go to declaration’, it keeps taking me to the java LiveData observe function. How do I get it to recognize the kotlin extension and highlight it in yellow? Already tried invalidate cache and restartDrew Hamilton
07/01/2019, 7:41 PMimplementation project(':mysdk')
voben
07/01/2019, 7:44 PMimplementation(project(":mysdk"))
The advantage of using kts is you get autocomplete, so you should see it autocomplete working as you typeTheDukerChip
07/02/2019, 1:54 PMJoan Colmenero
07/02/2019, 3:01 PMinterface BasePresenter<in T : BaseView> {
fun attachView(view: T)
}
And
interface BasePresenter<T> {
fun attachView(view: T)
kevin.cianfarini
07/03/2019, 12:02 AMLiveData
in a Flow
or using flow in instead of Livedata?goku
07/03/2019, 11:50 PMrkeazor
07/04/2019, 1:22 AMTuan Kiet
07/04/2019, 5:56 AMJoan Colmenero
07/04/2019, 1:44 PMlawlorslaw
07/04/2019, 3:37 PMLukas Anda
07/04/2019, 9:37 PMubu
07/05/2019, 11:31 AM1.2.71
to 1.3.10
in Android Studio 3.4.
I get unresolved references for all RxJava
dependencies. Then I get a popup message in AndroidStudio saying: '../StudioProjects/FuraReloaded/build.gradle': 34: only buildscript {} and other plugins {} script blocks are allowed before plugins {} blocks, no other statements are allowed. Here's my build.gradle
file:
https://gist.github.com/uburoiubu/9378f28fd77d46ed27b12ff34ed3a8ff
Any help will be appreciated.Jan
07/05/2019, 12:09 PMlenqnr
07/05/2019, 12:13 PMDialogFragment
that calls a `ViewModel`'s method, and the method calls a suspending method via viewModelScope.launch
. The problem is, when I click OK button on the dialog, I get kotlinx.coroutines.JobCancellationException: Job was cancelled
error message and the suspending method doesn't work. How can I overcome this problem? I moved the method to my MainViewModel
and accessed it with sharedViewModel
, but still the same JobCancellationException
occured.alec
07/05/2019, 2:09 PMexecute
methods instead of asObservable
itnoles
07/06/2019, 2:16 AMDarrinps
07/06/2019, 8:18 PMti4n
07/07/2019, 4:01 AMJoan Colmenero
07/07/2019, 9:23 AMSlackbot
07/08/2019, 7:07 AMpaste
07/08/2019, 11:51 AM// root build.gradle.kts
buildscript {
extra.set("androidxMaterialVersion", "1.1.0-alpha06")
...
}
// module/app build.gradle.kts
dependencies {
implementation("com.google.android.material:material:${rootProject.extra.get("androidxMaterialVersion")}")
}
this above is the implementation i'm using btw. the module implementation does not give a (Android Studio) warning saying there is a new version available, which works if it's GroovyAnimesh
07/08/2019, 1:18 PMandroid.zeeshan
07/08/2019, 9:54 PMivano
07/09/2019, 10:15 AMandroid.zeeshan
07/09/2019, 5:18 PMJonny
07/09/2019, 6:05 PMscottiedog45
07/10/2019, 1:17 AMfragmentManager?.popBackStack()
fragmentManager?.popBackStack()
(edited)