subsurface/packaging/ios
jan Iversen fdc2fd35bf mobile-widgets: add pure interface for passing values to QML
Add a header file that contains a duplicate of the enums,
that are needed in QML in one class.
the unit enums are added imidiatly, since they are needed
or will be neede shortly in Settings and DivePlannerSettings

This class will also contain Q_PROPERTY and signal/slot for
variables used in QML. This is done to allow e.g.

deco_mode qPrefUnits::planner_deco_mode()
void qPrefUnits::set_planner_deco_mode(deco_mode)
as strongly typed in C++
and
DECO_MODE planner_deco_mode()
void set_planner_deco_mode(DECO_MODE)
as strongly typed in QML
Remark: wrong assignments gives errors in QML

The advantage over using strings or the value directly is that
QML detects typos and flags them as errors/warnings.

It is important to note that the class may only contain
a) a function call to the implementation
b) a reference to a global variable e.g. prefs.

Added note to the original definitions of the enums that they
have been duplicated.

Signed-off-by: jan Iversen <jan@casacondor.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2020-01-18 17:31:58 -08:00
..
storeIcon.xcassets iOS: small change to storeIcon 2019-11-08 20:50:05 +01:00
build.sh build-system: iOS, change location of 3rd party builds 2019-12-18 13:29:25 +09:00
deployment.pri mobile/ios: correct whitespaces to coding standard 2018-06-21 04:25:21 +09:00
dummy.qml iOS: get rid of ios/Subsurface-mobile 2018-05-20 11:35:28 -07:00
Info.plist.in iOS: update Info.plist with better text and missing description key 2019-11-08 20:50:05 +01:00
iPhoneDeviceCMakeToolchain iOS build: add various support files 2016-03-06 11:02:48 -08:00
iPhoneSimulatorCMakeToolchain iOS build: add various support files 2016-03-06 11:02:48 -08:00
qml.qrc mobile/ios: correct whitespaces to coding standard 2018-06-21 04:25:21 +09:00
qt-installer-noninteractive.qs GitHub Action: add iOS build 2019-10-19 08:55:31 -04:00
README iOS: fix handling of version option to build.sh 2019-11-08 20:50:05 +01:00
Subsurface-mobile.pro mobile-widgets: add pure interface for passing values to QML 2020-01-18 17:31:58 -08:00
SubsurfaceMobileLaunch.xib iOS: updated launchscreen so it is more centered. 2018-05-24 10:19:08 -07:00
translations.qrc iOS: find translations again 2018-07-03 14:58:00 -07:00

Tool repo to crosscompile subsurface for iOS
--------------------------------------------

Dependencies:

- This only works on a Mac
- XCode with iOS SDK and Qt5.13 or later
- cmake

Follow the instruction in:
<repo>/INSTALL

and then continue here:

1) cd <repo>/packaging/ios
2) export IOS_BUNDLE_PRODUCT_IDENTIFIER="<your apple id>.subsurface-divelog.subsurface-mobile"
3) ./build.sh
note: this builds all dependencies and is only needed first time
      it currently build for armv7 arm64 and x86_64 (simulator)

1) cd <repo>/..
2) Launch QtCreator and open subsurface/packaging/ios/Subsurface-mobile.pro
3) Build Subsurface-mobile in QtCreator - you can build for the simulator and for
a device and even deploy to a connected device.

Everything up to here you can do without paying for an Apple Developer account.

In order to create a bundle that can be distributed things get even more
complex and an Apple Developer account definitely is necessary in order for you
to be able to sign the bundle.

The easiest way to do that appears to be to open the Subsurface-mobile.xcodeproj
in the build directory that QtCreator used in Xcode and to create an archive there.


WARNING:
========

The version number used in the Subsurface-mobile app is created in step 3.
So whenever you pull the latest git or commit a change, you need to re-run the
build.sh script so that the Info.plist used by QtCreator (well, by Xcode under
the hood) gets updated. Otherwise you will continue to see the old version
number, even though the sources have been recompiled which can be very
confusing.

Do a simply version update by running:
build.sh -version
and then rebuilding in Qt Creator (or Xcode)