Marcin Środa
08/20/2020, 4:48 PM@AndroidEntryPoint
in case
package (com.android.ui.case
or something).
Result:
Failed Caused by: javassist.NotFoundException:
Are there any forbidden package names? (code without hilt annotation is working fine)fatih
08/20/2020, 7:27 PMAndroidEntryPoint
is in dagger.hilt.android
package.Marcin Środa
08/21/2020, 5:14 AMpackage com.android.example.ui.case
@AndroidEntryPoint
class SampleActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
}
}
This one will fail (not generated by Hilt) because I’ve used case
word in package.gildor
08/24/2020, 5:09 PM