capacitor app version code example
Example 1: capacitor change app version
Android - android/app/build.gradle (you're looking for the versionName variable)
iOS - ios/App/App/Info.plist *(you're looking for the CFBundleShortVersionString key)
Example 2: capacitor ios 10
Capacitor supports iOS 11+. So if you need to support iOS 9+, you’ll have to use cordova 4.x.x or build your own thing.
Example 3: capacitor build android without android studio
ionic capacitor copy android && cd android && ./gradlew assembleDebug && cd ..