iOS and Android support is only indirectly done by Ionic itself, but more by Cordova. You can package old Ionic v1 apps in current Cordova versions (cordova-android and cordova-ios), as this is controlled by the Ionic CLI whose current versions still support Ionic v1 just fine. I don’t expect this to change.
The HTML and JS of an Ionic v1 app is highly unlikely to brake by changes to the Webview offered in future iOS and Android versions - websites from 1994 also still work in modern browsers just fine.
So I think you are probably good on this point.
Ionic v1 indeed does not support the most recent AngularJS versions ("angular": "1.5.3"
in Ionic v1, v1.6.6
is most recent stable of AngularJS on Github, v1.5.11
most recent 1.5.x release on Github) out of the box, but you can probably fix that yourself manually as AngularJS doesn’t really change that much any more as it is quite stable.
AngularJS versions of Ionci v1 were last updated “2 years ago”, but I expect if some really important update comes out, Ionic would still take care of these. Especially if someone else creates a PR, tests everything and they just have to merge it in.
The build process of Ionic v1 was pretty fast, not much to improve there, right?
For the app itself, the HTML and JS is of course different to what you would write today. Especially because of the build process, that doesn’t do that much (or any if I remember correctly) optimizations. On the other hand, devices have gotten much beefier than 2 years ago, so I am not sure if this really is a problem.
Do you have current problems in that area that need to be solved?
Yes, as with the Android and iOS versions this is mainly taken care by Cordova again via its plugins. ngCordova, the wrapper that made using Cordova plugins in Ionic v1 apps easier is deprecated, but that is not really a big problem as you can use the plugins directly, it’s just not as convenient. (I am not sure what the state of using Ionic Native in Ionic v1 projects is. Maybe this works as well).
So my personal conclusion is that if you have a working app that only has to be maintained, maybe sometimes gets a small new feature, staying with Ionic v1 definitely is fine. As soon as there is a redesign or major functionality change, I would start thinking about rewriting it though. Developing Ionic v1 apps definitely won’t get easier, and surely not sexier over time.