-
Notifications
You must be signed in to change notification settings - Fork 389
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hawk isn't a 64-bit compliant library #233
Comments
caiodev
changed the title
Hawk is not a 64-bit compliant library
Hawk isn't a 64-bit compliant library
May 15, 2019
Please, can we migrate to this version? |
I created a PR for that #238 : D |
Excluding conceal from hawk and adding newer version by myself helped me for now implementation('com.orhanobut:hawk:2.0.1') {
exclude group: 'com.facebook.conceal', module: 'conceal'
}
implementation 'com.facebook.conceal:conceal:2.0.2' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
According to these 2 links, those apps who support 32-bit devices only will no longer be accepted by Google play starting August, 1st:
https://android-developers.googleblog.com/2019/01/get-your-apps-ready-for-64-bit.html
https://developer.android.com/distribute/best-practices/develop/64-bit
And Hawk uses Conceal which is a Library that uses native code and if one analyzes an APK that uses Hawk, one will be able to see that the only obstacle to make one's app 64-bit compliant is the Conceal dependency that Hawk uses(Refer to this link and follow the steps: https://developer.android.com/distribute/best-practices/develop/64-bit). Do you have any plan on how to remove this dependency from Hawk and change it so it can be 64-bit compliant? I look forward to hearing from you soon. Thank you
The text was updated successfully, but these errors were encountered: