highcharts / highcharts-android

Android wrapper for Highcharts usage
Other
126 stars 30 forks source link

Increased app size #281

Closed RadostinMarinov21 closed 4 months ago

RadostinMarinov21 commented 4 months ago

I noticed a similar issue before, and it seems to be getting worse. We are seriously considering replacing highcharts If it persists. I managed to fix it by adding the following code to our build.gradle.kts file but I'm unsure if this might accidentally exclude necessary parts of the library. Do you think you could apply a similar fix on your end?

android {
    packaging {
        androidResources {
            ignoreAssetsPatterns.add("graphics*")
        }
    }
}
MikolajMichalczak commented 4 months ago

Hi @RadostinMarinov21! Thank you for reaching out about this issue. I'll do my best to look into the situation and get back to you with a response as quickly as possible. Your concern about potentially excluding necessary parts of the library is valid, so I'll investigate thoroughly before providing any recommendations.

MikolajMichalczak commented 4 months ago

@RadostinMarinov21 After careful consideration, we have decided to release the next version without the mentioned folder. We believe this will help address the issue you're experiencing. If you encounter any further problems or have any feedback after the update, please don't hesitate to let us know.

MikolajMichalczak commented 4 months ago

@RadostinMarinov21 Version 11.4.3 has been released and is now available.

RadostinMarinov21 commented 4 months ago

Thank you for your fast response and for resolving the issue so quickly.