14
ZioCain
4y

Not really a rant, but:

Me, programming in unity using C#: well if I add that library, My life will get a little bit easier, but the final APK will be 2MB heavier because of it.
WebDev who never used compiled programming languages: can't you just minify it?
Me:

Comments
  • 1
    Webdev wondering why ur apk is bigger than 2mb 😘
  • 0
    That's... kind of ignorant.
  • 0
    @noogli the said webdev is my boss lol
  • 3
    APKs contain Java byte-code, which can be even more optimized by using ProGuard (which minifies code by shortening byte-code encoded names). The option to enable this in Gradle is called minify. And it's enabled on most projects.
    Don't try to sound smarter than others. There are no stupid questions.
  • 0
    @bartmr yeah but this APK is made from unity, so I can't really optimize that much
  • 0
    @ZioCain Yeah I know. It probably uses NDK underneath and already compiled stuff in the best way possible. Just don't mock webdevs. It's actually hard being a webdev because you have so much things to deal with in an ever changing environment (web browser) with so many things happening at the same time (async stuff)
  • 1
    @bartmr I know, I'm a webdev as well.
    And don't think that async stuff only exist there.
    Also iOS and android might change way more than just the browser.
Add Comment