This post will cover the steps required for migrating from Square AssistedInject to Dagger AssistedInject, minor differences between the two, and the status of InflationInject. class Example @AssistedInject constructor( graphValue: GraphValue, - @Assisted assistedValue1: String, + @Assisted @Named("one") assistedValue1: String, - @Assisted assistedValue2: String, + @Assisted @Named("two") assistedValue2: String, ) { // ...