subsurface/packaging/ios
Dirk Hohndel ba2b5d8505 Add en_US translation for plurals
This way in the en_US locale we no longer get shown the odd "dive(s)"
and instead get correct singular and plural forms.

Most of the patch is just a reindentation as it removes the if clause
that used to do the special case of NOT loading a translation for the
en_US case.

Right now we start with a trivial en_US translation file. My guess is
that this will be overwritten once we do the next round of "new strings,
new translations".

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2017-06-22 04:19:23 -07:00
..
Subsurface-mobile Add en_US translation for plurals 2017-06-22 04:19:23 -07:00
build.sh Change protocoll for any git clone from Github to https 2017-04-16 07:41:24 -07:00
deployment.pri iOS build: add various support files 2016-03-06 11:02:48 -08:00
Info.plist.in Update from 2016 to 2017. Happy new year! 2017-01-01 10:28:25 -08:00
ios_build_instructions Build instructions to deplay on you own iOS device 2016-04-11 12:42:59 -07: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
README Update the README for building the iOS version 2016-09-04 11:17:44 -07:00
SubsurfaceMobileLaunch.xib iOS build: show correct program name on launch screen 2016-03-06 19:35:37 -08:00

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

The interaction between the different tools seems quite fragile.

Dependencies:

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

Steps to install:

Step 1.
Install current XCode with the iOS SDK
And QT for android from: http://qt-project.org/downloads, including the iOS bits

Step 2.
Extract and install these into known directories.
Have a look in the top of build.sh for where the cross build tool expects
them. Create a symbolic link named Qt in this directory to point to the top
of the Qt installation, e.g.
ln -s ~/Qt5.7.1 Qt

Step 3.
Run bash build.sh in the terminal.
The script will download and build the whole dependency chain, but not the actual
Subsurface-mobile binary

Step 4.
Launch the version of QtCreator that was installed in Step 2 above and open
Subsurface-mobile/Subsurface-mobile.pro
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.