Install the OpenSSL on Debian based systems
sudo apt-get install openssl| // | |
| // Lookup Tables for Marching Cubes | |
| // | |
| // These tables differ from the original paper (Marching Cubes: A High Resolution 3D Surface Construction Algorithm) | |
| // | |
| // The co-ordinate system has the more convenient properties: | |
| // | |
| // i = cube index [0, 7] | |
| // x = (i & 1) >> 0 | |
| // y = (i & 2) >> 1 |
| #!/bin/bash | |
| #Thanks to this page: http://chris-allen-lane.com/2012/12/phonegap-compiling-a-release-apk-without-using-phonegap-build/ | |
| #USAGE! | |
| # 1. Replace <AndroidKeyName> with the filename of the keyfile generated (see url) | |
| # 2. Replace <ProjectName> with the project name in the generated file form cordova, see path/to/my/project/platforms/android/bin and look for an APK if you need help | |
| # 3. Replace <AndroidKeyNameAlias> from the alias used when generating the key (see url again!) | |
| # 4. Edit path/to/my/project/platforms/android/AndroidManifest.xml and change "debuggable=false" (search for it!) | |
| # 5. Check path/to/my/project/Release/android for your sparkling new apk! | |
| # | |
| # This worked and was uploadable to the google play store. |