The main difference between the two pages is the method of sending messages. Recieving messages is the same in both.
Send messages to iframe using iframeEl.contentWindow.postMessage
Recieve messages using window.addEventListener('message')
| Register in HockeyApp | |
| -Android | |
| 1. cordova build --release android | |
| 2. keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000 | |
| 3. jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore my-release-key.keystore HelloWorld-release-unsigned.apk alias_name | |
| 4. zipalign -v 4 HelloWorld-release-unsigned.apk HelloWorld.apk | |
| 5. upload apk file to HockeyApp | |
| -IOS | |
| 1. cordova build --release ios |
| server { | |
| listen 80; | |
| listen [::]:80; | |
| server_name domain.com; | |
| autoindex off; | |
| index index.php index.html; | |
| root /srv/www/domain.com/public; |
| <?php | |
| /** | |
| * Ranking Library | |
| * contains alogrithms for story ranking | |
| * Basically a PHP Implementation of reddits algorithms | |
| * | |
| * @author Lucas Nolte <lnolte@i.biz> | |
| * @since 0.1 | |
| * @package Polska Wiadomosc | |
| * @subpackage Libraries |
| //Writing and reading XML files with Qt - qxmlstreamwriter and qxmlstreamreader supported classes | |
| void MyXMLClass::SaveXMLFile() | |
| { | |
| QString filename = QFileDialog::getSaveFileName(this, | |
| tr("Save Xml"), ".", | |
| tr("Xml files (*.xml)")); | |