Trying to make own app inventor

As I already stated, in pretty much every shell environment whitespace is considered significant. This is not different on Windows.

The standard *nix thing is to not use spaces in paths so it works fine in our dev, build, and deploy environments. We don't build nor test nor deploy on Windows, so Windows oddities like allowing spaces in usernames aren't a high priority for us to address. You're welcome to submit a fix if you want to support this. If you're planning to run your own distribution of App Inventor at some point you should become familiar with how to address issues yourself.

13 Likes

Hi anyone
How to remove the components because I want the size of the app to be minimum, if needed, we can add.

1 Like

From where you want to remove Component

1 Like

I think he doesn't want all classes added to the apk. Now the inventor app also adds classes that are not used in the apk.

4 Likes


Can I remove this components, I said.
Because minimum size is 3.33 something and I will remove some components then app size to 3.33mb to 2mb something possible or not

1 Like

Yes, you can.

Use Android Studio.

3 Likes

Sorry, I didn't understand. Why would you trying to be reduce the file size BELOW the minimum?

I want the component we need to remain in the builder and the rest can be added as per the requirement, so that the size of the app is also reduced. This is my idea.

(post withdrawn by author, will be automatically deleted in 24 hours unless flagged)

No !
Please don't use hindi to talk in the community.

There are no firm rules about using languages other than English in the community, we have a translation service, however it is certainly more inclusive if English is used. If a non English language is used for #off topic# discussions then that will be flagged.

5 Likes

Ok, I'll do that. I'll PM him instead. Thanks for the feedback, I'll keep this in mind.

No, @nishyanthkumar there is no rule to talk only in English you can talk in your language.

2 Likes

I have merged https://github.com/mit-cml/appinventor-sources/pull/2553 that should fix the whitespace issue.

5 Likes

You would need to implement this functionality for yourself as it is not part of the built-in App Inventor system. I would point out that the AndroidRuntime.jar file, which contains all of the component classes, is only 1.3 MB. Of that, some classes would be impossible to eliminate, such as the items in the error and util packages (which contains items like YailDictionary and YailList). Additionally, the largest class by far is Form.class, which is the base implementation for all screens. I would be surprised if you could eliminate a whole megabyte (roughly 75%), but it might be doable.

At a high level, you'd need to adjust Compiler.java to create a new AndroidRuntime.jar file that contains the various subpackages and only those classes (plus any inner classes) for each component type used in the project. This modified AndroidRuntime.jar would then be used to build the final application following the existing logic.

7 Likes

Is now ant command work even spaces in username this do not work because I have spaces in my laptop username

Hello @Faraz_Firoz,
Well, it should be working, no matter it's a space in the username or in other directories.
However, your local sources aren't updated automatically with each commit being pushed in the origin repository, you must manually pull the commits pushed in the remote repository to get the latest changes. Have you updated the sources by re-cloning it or better by pulling the latest changes from the Appinventor master branch? i.e:

git pull origin master

If not, i don't expect something to change instead of what was going before.
Have you updated the sources?
If not, run the previous commit and try rebuilding.

4 Likes

Thank you all got Local host 8888
A special thanks to @MohamedTamer, @Techno_Vedang, @Sashibhusan_Sahoo
Got solution after 250 conservation
:wink: :wink: :wink:

3 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.