Phonegapped version of hive-js
git clone git@github.com:hivewallet/hive-ios.git
cd hive-ios
npm install
Step 1: Create configuration for your development environment setup
cp dev.config.sample dev.config
# then modify accordingly
Step 2: Build the js app & start the local server:
source dev.config && npm run dev
The local database won't work on the simulator or devices, so we need to build the js app for production and then copy it to cordova to build the ios app.
Step 1: Create configuration for your production environment setup
cp prod.config.sample prod.config
# then modify accordingly
Step 2: Run the app build command
source prod.config && npm run build
Step 3: Build & run the iOS app:
# on simulator
source prod.config && npm run ios-emulator
# on device
source prod.config && npm run ios-device
Or alternatively just build:
source prod.config && npm run ios-build
and then use Xcode to run the simulator in a chosen mode (e.g. 3.5-inch iPhone or iPad).
Prepare a provisioning profile:
Build the js app for production:
source prod.config && npm run build
Build the cordova app for release:
source prod.config && npm run ios-build-release
In Xcode, use "Archive" to bundle the app into an .ipa file ("Device" must be selected in the top bar) and then export it using "Distribute" -> "Save for Enterprise or Ad Hoc Deployment", sign it with the newest provisioning profile. Then go to TestFlight, upload the .ipa there and send it to testers.
Note: you can also upload a new provisioning profile with new devices to TestFlight to re-sign an existing build without rebuilding it in Xcode.
Prepare a provisioning profile - this time choose "App Store" when creating it on the "Certificates, Identifiers & Profiles" site (you don't need any devices).
Go to iTunes Connect, log in as the team admin. Select the Hive app and add a new version. Edit metadata if necessary. Get to the state where it says "Ready for upload".
Build the app for release as above. Create an archive, and then use "Distribute" -> "Submit to the iOS App Store".
Pull requests are very welcome. If you want to send us any code, try your best to adhere to our coding guidelines:
If you like Hive, you can also send us donations in BTC to 142m1MpXHhymF4aASiWwYohe1Y55v5BQwc
Hive is released under GNU General Public License, version 2 or later.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.