1- Build release : ionic cordova build android –prod –release 2- Generate release key : keytool -genkey -v -keystore my-release-key.keystore -alias releaseKeyStore -keyalg RSA -keysize 2048 -validity 10000 Add password to your key ,ex: 123456 3- Sign your app with the generated key : jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore my-release-key.keystore platforms/android/app/build/outputs/apk/release/app-release-unsigned.apk releaseKeyStore 4- Compress your app: /PATH-TO/Android/sdk/build-tools/23.0.3/zipalign -v 4 platforms/android/app/build/outputs/apk/release/app-release-unsigned.apk app.apk…
Category: Uncategorized
Upload image
A complete example on how to use Ionic and PHP to upload image from your app to the server . You can display the image once selected on your Html file and delay the upload to the last step when you ready to send all your form data ,start by uploading your image and when success return call the remaining…
Common Errors Solution
SomeTimes when using our themes you may face one or more of these errors . So we tried to collect them with their solutions to make it more simple for you . We still offers our 24/7 support for any more issues throw chat at HybApps website . Or by emailing us at sales@hybapps.com . Errors 1- Data path “” should…
How to use Hybapps Ionic4 theme with your App ?
INTRODUCTION: This tutorial is about how to use your downloaded Hybapps ionic3 theme in your Ionic4 app . Why Ionic 4 ? is now distributed as a set of Web Components using the Custom Elements and Shadow DOM APIs available in all modern mobile and desktop browsers. On top of that, because Ionic now targets standard web APIs instead of…