Offline GuideWithMe travel guides based on Wikivoyage articles.
This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
Find a file
2014-06-08 17:04:31 -10:00
3rdparty Use API from separate git repo 2013-12-12 16:31:38 +03:00
android [android] Increased build tools version 2014-06-07 15:19:33 -10:00
builder Added Montenegro to the toolchain 2014-06-08 17:04:31 -10:00
data Fixed "selection" on section header tap 2013-10-15 17:54:33 +03:00
env Added CONFIG+=debug and CONFIG+=release support 2013-09-25 19:32:39 +02:00
geocoder Added experimental articles geocoding scripts 2014-05-08 22:28:42 +07:00
iOS [ios] Removed arm64 arch as it's not supported for iOS 5 2014-06-07 15:46:09 -10:00
std Changed str::Tokenizer semantics (pass functor instead of iterator). 2013-08-12 22:14:30 +03:00
storage [and] Compilation fix. 2013-10-08 16:07:43 +03:00
tools [tools] Added android jobb utility to automatically build obb files 2013-08-12 20:40:14 +03:00
.gitignore Updated .gitignore 2014-05-23 10:09:45 +08:00
defines.pri Added CONFIG+=debug and CONFIG+=release support 2013-09-25 19:32:39 +02:00
readme.md Fixed typo 2014-05-14 22:40:20 +08:00
tests.pro Added storage index builder. 2013-08-07 22:51:21 +03:00

How to build guide for a new country

To add new country to generation list please follow next steps:

  1. Add country's name from file all_countries.txt to file countries_to_generate.txt
  2. Add default image for this country into the folder default_images this image will be used for articles which don't have image (or we dont have image for them). It's name must be <country_name>.jpg.
  3. Remove file process_html if exists to update data.

Now you'r ready to build new amazing guides with me!

  • run bash build.sh to prepare data for guides and Android obb files.

iOS - add new country

  1. Duplicate any existing iOS target and give it a name of new country
  2. Delete copy of plist which was created by XCode
  3. Some target's proj settings are set to default values and should be fixed/set equal to other targets
  4. Set PRODUCT_NAME in target project properties equal to a name of new country
  5. Set BUNDLE_ID in target properties to com.guidewithme.newcountry (all lowercase, dots instead of spaces)
  6. Set URL_SCHEME in target properties to guidewithme-newcountry (all lowercase)
  7. Add all necessary app icons to the corresponding folder
  8. Fix "target membership" for icons and for data folder in resources for original target which was duplicated
  9. Drag "../builder/wikivoyage/Countries//content/data" folder to the Resources and create folder reference
  10. Add new target name to iOS/build.sh to use Jenkins autobuild
  11. Create new app/key in Flurry and add it to iOS/offlineguides/Statistics.m file

To build new guide locally from XCode, you should copy guide data generated by builder to iOS/Countries/New_Country folder. In this folder there is content/data folder with *.html files, css, js, images and thumb subfolders

Android notes

IMPORTANT

  • Don't forget to edit file android/src/com/guidewithme/expansion/KeyMap.java Please add Google Play public license key at the end of the COUTRY_2_KEY map AND increment KEY_COUNT constant.
  • Add icons for every resolution to android/icons/CountryName/

There is one script you need to use to build guides for Android: build-with-android.sh. It places it's result (obb, apk) into countries folder Countries/<country_name>.

Android applications have package name made of lowercased country name and underscores replaced with dots, added to "com.guidewithme.". For instance: United_States -> com.guidewithme.united.states

United_Kingdom hack

We have package name "com.guidewithme.uk" for it for the sake compatibility with first release. obb and apk files are generated accordingly.