this post was submitted on 30 Sep 2023
384 points (100.0% liked)

196

16925 readers
1625 users here now

Be sure to follow the rule before you head out.

Rule: You must post before you leave.

^other^ ^rules^

If you have any questions, feel free to contact us on our matrix channel.

founded 2 years ago
MODERATORS
384
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 30 points 1 year ago (2 children)

Android apps are written in Kotlin or Java and this means every file will be per convention under com.company.appname(or similar)

And every file will have a line

package com.company.appname

And references to other files in the import.

This means every source code file is changed and therfore recompiled and the update will include the whole app.

Now 35GB means there is a lot of image and/or Audio resources also included. Why this is updated as well I don't know, but their path also changed. Maybe that's enough for the Version control to see it as new.

[–] [email protected] 15 points 1 year ago

And that's why you use a separate codename for actual software development. Changing the visible app name should only affect a few resource files.

[–] [email protected] 6 points 1 year ago

In those cases, I would leave the internal naming alone. It's not uncommon for software to have a different name internally than externally.