java.lang.RuntimeException: Internal error in Firestore (0.6.6-dev) after updating Firestore version

后端 未结 3 1746
别那么骄傲
别那么骄傲 2021-01-24 10:38

I am getting below error after updating from firestore:17.0.1 to firestore:17.0.2

java.lang.RuntimeException: Internal error in Firest         


        
3条回答
  •  暗喜
    暗喜 (楼主)
    2021-01-24 11:14

    From firebase support reply I solved this issue by adding below to progauard rule in future if someone facing this issue try this solution:

    -keepclassmembers enum * {
        public static **[] values();
        public static ** valueOf(java.lang.String);
    }
    

提交回复
热议问题