You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now Google does not uploading applications with this player. The letter says:
After a recent review, we found that your app does not comply with one or more of the Developer Program policies. See below for more information about the status of your application and how to troubleshoot the issue.
Problem with your application
We have detected that your application is using the Giraffeplayer SDK, which contains code to download executable code (eg dex, JAR, .so files) from a source other than Google Play.
If necessary, contact the SDK vendor(s) for more information.
The text was updated successfully, but these errors were encountered:
I was able to successfully upload the application to GooglePlay from GiraffePlayer2.
Here's what I did:
1- Installed the GiraffePlayer2 library locally as a module of my application.
2- LazyLoadManager has a method soFetcher.getURL(abi, soVersion). It downloads .so files into the application after the user has installed your application. GooglePlay complains about this.
Therefore, download all .so files yourself using the link created by this method soFetcher.getURL(abi, soVersion).
Download for different architectures "arm64-v8a", "x86", etc.
3- Put these .so files in app -> libs of your application. (In the folders of the required architecture)
4- Remove LazyLoadManager.
5- Remove the LazyLoadManager.Load(context, videoInfo.getFingerprint(), Message.obtain(msg)) method call in GiraffePlayer.java
Now, when the player initializes, it will take the .so files from your libs folder. And it will work.
Now Google does not uploading applications with this player. The letter says:
After a recent review, we found that your app does not comply with one or more of the Developer Program policies. See below for more information about the status of your application and how to troubleshoot the issue.
Problem with your application
We have detected that your application is using the Giraffeplayer SDK, which contains code to download executable code (eg dex, JAR, .so files) from a source other than Google Play.
If necessary, contact the SDK vendor(s) for more information.
The text was updated successfully, but these errors were encountered: