scottiedog45
04/15/2019, 4:15 PMam414
04/16/2019, 3:41 AMoleksandr_sandul
04/16/2019, 8:00 AMAkram
04/16/2019, 4:44 PM@Inject
annotation and also i'll generates a dagger Module to provide the interactors with the @Binds
annotation , the problem here is how could i add the module in the appcomponent because its not generated in compile time .ibcoleman
04/16/2019, 6:50 PMKatie Levy
04/17/2019, 12:23 AMubu
04/17/2019, 10:33 AMMarko Mitic
04/17/2019, 5:05 PMitnoles
04/17/2019, 5:21 PMdawidhyzy
04/18/2019, 6:44 AMczuckie
04/18/2019, 9:12 AMhmole
04/18/2019, 4:41 PMMETA-INF/kotlin_module
from an aar
artifact breaks my android-application
compilation with extensions functions and global properties from the aar
not being acessable by the compiler???morcerfdumas
04/20/2019, 7:42 AMSerializable
, and sending one of it’s sub-classes as intent extra to the next activity. However, in the 2nd activity, pattern matching fails because the serialized object obtained from the intent extras is not the same as the classes in the when
classesDamien O'Reilly
04/20/2019, 2:18 PMdagger.android.AndroidInjector.Builder
is deprecated. https://google.github.io/dagger/api/latest/dagger/android/AndroidInjector.Builder.html Prefer AndroidInjector.Factory now that components can have factories instead of builders
Has anyone tried this yet? I am struggling to find an example of this.Akram
04/20/2019, 9:11 PMrook
04/22/2019, 2:34 PMtyler
04/23/2019, 4:17 AMnatansalda
04/23/2019, 5:57 AMthere was code but there is not anymore, as I won't get help here anyway as I see
hmole
04/23/2019, 7:28 AMcom.android.tools.build:builder
artifact into my buildSrc
to be able to configure AGP from kotlin code? Sources compile fine, but the code that references it is all red in IDE. Anyone faced simular issue?Oleh Ponomarenko
04/23/2019, 3:14 PM@POST("api/auth/login")
fun loginAsync(@Body loginRequest: LoginRequest): Deferred<LoginResponse>
data class LoginResponse(
val status: String
)
In my response I don't see it, but it exists.
http://prntscr.com/nfty4z
http://prntscr.com/nftylctyler
04/23/2019, 4:01 PMAbstractList.set(int index, E element)
public E set(int index, E element) {
throw new UnsupportedOperationException();
}
Benoît
04/23/2019, 6:22 PMhttps://www.youtube.com/watch?v=MmUCau26tLg▾
darkmoon_uk
04/24/2019, 12:09 AMhussain
04/25/2019, 10:08 AMhussain
04/25/2019, 10:09 AMLilly
04/25/2019, 10:39 AMEventHandler
. Im working with Kotlin + Dagger 2 (not dagger-android) with currently one simple Component
which is built in application class. EventHandler
needs the activity or at least some views and I will inject it into my activity so its a circular dependency. Is there a better way to do this or to avoid the circular dependency?tseisel
04/25/2019, 8:04 PMExecution failed for task ':app:transformResourcesWithMergeJavaResForDebug'.
> More than one file was found with OS independent path 'META-INF/atomicfu.kotlin_module'
it seems related to having org.jetbrains.kotlinx:kotlinx-coroutines-android:1.2.0
as a dependency.
I solved it with the following workaround :
android {
packagingOptions {
exclude 'META-INF/*.kotlin_module'
}
}
But that wasn't necessary in 1.1.1
.paras
04/26/2019, 5:32 AMjava.util.concurrent.ExecutionException: com.android.builder.internal.aapt.v2.Aapt2Exception: Android resource linking failed
library/build/intermediates/res/merged/release/values/values.xml:307: error: resource android:attr/fontVariationSettings not found.
library/build/intermediates/res/merged/release/values/values.xml:308: error: resource android:attr/ttcIndex not found.
jw
04/29/2019, 3:39 PMGeert
04/30/2019, 7:23 AMGeert
04/30/2019, 7:23 AMyousefa2
04/30/2019, 8:25 AMGeert
04/30/2019, 8:51 AM