What is 'android.security.MessageDigest''?

前端 未结 3 1655
挽巷
挽巷 2020-12-05 10:45

One of several thousand customers reported an error in one of my apps. The error is:

java.lang.NoClassDefFoundError - android.security.MessageDigest
<         


        
3条回答
  •  借酒劲吻你
    2020-12-05 10:58

    The MessageDigest class is a helper class used to encode/decode keys, using common methods such as MD5 or SHA-1.

    It seems that the class android.security.MessageDigest was removed from Honeycomb and later releases of Android, and must be replaced by java.security.MessageDigest (see this page)

    Try downloading the latest version of the Google Maps API and rebuild your application with targetSDK set to the highest available (as of today it should be 16 / Jelly Bean).

提交回复
热议问题