androidbroadcast / ViewBindingPropertyDelegate

Make work with Android View Binding simpler
https://proandroiddev.com/make-android-view-binding-great-with-kotlin-b71dd9c87719
Apache License 2.0
1.42k stars 102 forks source link

NoClassDefFoundError #115

Closed Android-pengbo closed 1 year ago

Android-pengbo commented 1 year ago

Hello author, when using this library, I only relied on 'implementation' com. github. kirich1409: viewbindingpropertydelegate full: 1.5.9 '. This library crashes directly during basic use. When introducing viewbindingpropertydelegate full, does Android Studio prompt Standard library: 1.7.10->1.8.10 due to different versions of kotlin Is it because I used the wrong method or other reasons Here is my code ` /**

} class MainActivity : AppCompatActivity() {

override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.activity_main)

    val beginTransaction = supportFragmentManager.beginTransaction()
    beginTransaction.add(R.id.fl_content,TestFragment())
    beginTransaction.commit()
}

}`

Android-pengbo commented 1 year ago

Sorry, I used the wrong method