There are several reasons for the increasing size of the apps and no, its not always about developers being lazy. As far as laziness is concerned, the primary type of laziness from developers that I see is cutting corners by building packaged web/hybrid apps instead of native apps and they tend to be bulky and poorly optimized for all of the platforms they run on. Apart form that, there are several other reasons many of which are not really the developers fault.
Some platforms like especially iOS have hard line restrictions that each app should be completely standalone. So for example if you use a popular framework that weighs 10 MB and you develop 10 apps using it and some other developer makes 5 apps, over the framework size, if the end user is installing all 15 apps, the framework size would be duplicated that many times. lets say that the application code is just 2 MB for each app, so instead of 2 x 15 + 10 = 40MB, they will take 12 x 15 = 180 MB.
Furthermore, majority of the bulk of mobile applications is the various assets packaged in the app.
Despite the small size, you have Full HD and Quad HD displays on phones and in next few months, we will be have 4k displays on phones and tablets. Think about how much high resolution assets add to the weight of the app. Further more, you have to cater for multiple resolutions. so in all probability, same assets in multiple resolutions would be included in the package and used as per the device specs. Developers cannot make separate packages for each combination of specs and assets cannot be selectively installed by app stores.
As an example, I was working on a Windows Phone app till recently. The code is spread across 80 assemblies that were written in C#. The app bundle that we were producing was about 4.2 MB in size, the 80 code assemblies combined together constituted just about 1.2 MB. 3MB was the compressed images, audio and font assets. This was with assets for 800 x 480. When the 720p assets were added, the app size was nearly doubled. Imagine adding 1080p and 1440p assets to that bundle. The code size was still 1.2 MB.