No such instance field

前端 未结 6 1283
醉酒成梦
醉酒成梦 2020-12-09 16:54

I\'m trying to get my application to save some data when the orientation of the screen is changed using the onSaveInstanceState to save a boolean value mC

6条回答
  •  醉酒成梦
    2020-12-09 17:30

    I had the same error. The solution to the error is to disable the Proguard in build.gradle file.

     debug {
            minifyEnabled false
    }
    

提交回复
热议问题