-
Notifications
You must be signed in to change notification settings - Fork 45
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
Add multidex support #4
Comments
It should be easy enough to add the multidex flag to build.xml invocation of dx, but the problem is that App Inventor's build system doesn't expect that there will be more than one classes.dex in the extension. You may want to look at the dependency tree of your extension and see if all the dependencies are really necessary to do what you want. The number of methods in your extension exceeds the number of methods in all of App Inventor and its dependencies... |
I know that I use a lot of jar files, but that's because AI doesn't support dependency resolving. I have to resolve all dependencies and add all jar files to |
If App Inventor resolved the dependencies, it wouldn't fix the problem of there being too many dependencies. This simply won't work unless we patch core to support extensions having more than one classes.dex file. |
@10MINT Does the dependencies here refer to those used by App Inventor itself? Doesn't AndroidRuntime.jar have them? |
@pavi2410 I meant external dependencies. For example, the Apache POI library has a lot of dependencies |
I'm running into some issues because I need too much jar files for my extension. The error I'm getting is
Somebody mentioned a solution here
https://community.appinventor.mit.edu/t/how-to-add-multidex-support-to-appinventor/257
The text was updated successfully, but these errors were encountered: