How can i find x64 libs for Skobbler library?

157 Views Asked by At

We use old version of Scobbler in our project, and now we can't publish our updated apk because of new Google Play 64-bit requirement:

https://android-developers.googleblog.com/2019/01/get-your-apps-ready-for-64-bit.html

There are on only x32 lib files in our project, we have't necessary x64.

We bought it and we use it legal, but Scobbler closed their sources about year ago. So now we can't just download files from their site or git(as patchnotes says, Scobbler releaze library for x64 on last patches).

So, what should we do? Is there any way to find files for x64 support? Scobbler is very important for us, we can't replace it(we tried).

We write to their support several days ago, but no one response. As i think, no one will.

2

There are 2 best solutions below

5
Manoj Perumarath On

Check this link Here you can see the change logs for the SDK

Android SDK change log from version 3.1.0 to version 3.2.0

New features

64 bit architecture for SDK

By using this version most of your methods might get changed.

An alterantive patch is to use this in build.gradle

android {
defaultConfig {
    ndk {
        abiFilters "armeabi", "armeabi-v7a", "x86"
    }
  }
}

Also add android.useDeprecatedNdk=true into gradle.properties

Finally create a new folder named armeabi under the libs and copy 32bit .so file into that folder.

0
Sz.Levi On

Please check the Android SDK Public Release Change log from 3.2.0 to 3.3.0: https://developer.skobbler.com/changelog/android/3.3.0

Send mail to customer support if needed.