Update from Google Play

We would like to inform you that Google has updated their Developer Policy to make apps published with Google Play compliant with user Privacy, Security, and Deception policy and now restricts the use of high risk or sensitive permissions, including the SMS or Call Log permission groups.

Please review these permissions in your Appery.io project(s) on the App Settings page (Project->App Settings->Android Permissions).

If such permissions are not used by your application but are enabled, please disable them. Once done, upload an updated app version to Google Play to ensure it will be allowed by Google.

If your application requests the use of such permissions, you will be required to submit the Permissions Declaration Form to receive approval from Google Play. Once your Permission Declaration is reviewed and your app is approved for policy compliance to the Google Play Developer Distribution Agreement, your application will be published.

Note:

Completing the form is required even if the application does not use such permissions, so please select any items there and add a comment like: “I’ve selected one just to submit a form, the app doesn’t require that feature”.

How to Build a Sample Ionic 3 List App

This post will describe step-by-step how to build a sample app with Ionic 3 that will retrieve a list from your database collection.

  1. Create a new Ionic 3 app. From the Apps page, click Create new app > Ionic 3 (beta), give it a name, and click Create.
  2. Import the List service from any existing or newly created Appery.io database collection. Create new > Database Service, select the needed database and check the List service checkbox confirming import.
    The subfolder with the corresponding name should now have been added to the Services folder in the Project view tree.
  3. Add a model called SingleItem of type Object and 2 attributes: name and _id. Then, add the Items model of Array type and define it in the following way:
  4. Open Pages and rename Screen1 to List using the “cog” sign.
  5. Under the DESIGN tab, add a List component to the List page and delete the 2nd and 3rd items on the list.
  6. Select the List item and add the property *ngFor=let item of items. Also, set the Text property to {{item.name}}.
  7. Now, add a Button component to the page, select it, and define its Text property as Load List and (click) property as loadList().
  8. Switch to the CODE tab, click Edit internal includes, check your added list service, and save:The service with the corresponding name should now be added under Internal includes.
  9. Add 2 variables: items of type Items and listService of the type of your list service (added to Internal includes). Check the Add DI checkbox for listService.
  10. Finally, add a function, name it loadList, and define it with this JavaScript code:
    this.listService.execute({ // change 'MerchandiseDB_New_InStock_list_service' to actual variable name//
        data: {},
        params: {},
        headers: {}
    }).subscribe(
        (res: any) => {
            console.log("res = ", res);
            this.items = res;
            console.log(res);
        },
        (err: any) => {
            console.log(err)
        }
    )
    

VoilĂ !

You can now test your app. To do so, click the arrow button next to the Test menu item. In the drop-down, select Show without frame and click Launch. The page will be loaded. Now, click the Load list button. The list appears loaded with the items from the database:Note: To learn how this app can be modified to search and share data across its pages, proceed with this post.

Upcoming Pricing Update – Consider Subscribing at Today’s Price!

We haven’t changed our pricing for 2.5 years while keeping the pace of developing new exciting features of Appery.io. In fact, almost entire API Express as well as Ionic 3 editor were introduced during that time period and more new features are coming! We are very close to release PWA support and in Q2 we will release Ionic 4 editor with a set of nice codeless features. On February 10 we will slightly update Pro plan pricing to keep up with rising AWS and development cost. No other plans will be affected. We are grandfathering all existing pro plan subscriptions, so if you are a current Pro plan customer before February 10, your price will not change, unless you make a change to your subscription.

Note that any change in the plan (such as adding or removing users, or stopping and restarting your subscription) will require moving to the new Pro pricing plan.

The upcoming pricing, as of February 10, is as follows:

Billed Annually Billed Monthly
 Pro $70/month $99/month
 Team (unchanged) $135/month $200/month

The new Pro plan pricing compares to today’s price of $90 (billed annually) and $60 (billed monthly).

Additional User Seat Pricing is unchanged. The pricing of new user seats is the same, regardless of the plan and unchanged as shown below.

Billed Annually Billed Monthly
 Additional User (unchanged) $30 $40

There are no other changes to the plans. The allocation of resources such as projects, API calls, push notifications and storage space will all remain the same as before.

Consider Subscribing Today!

If you are considering subscribing to the Pro plan whether monthly or annual, you should consider subscribing before February 10 to lock in the lower price!

If you have questions, please don’t hesitate to reach us at support@appery.io

Go Digital on a Shoestring Budget with Appery.io PWAs

A Progressive Web App (PWA) is the most cost-effective way to go on the market fast with a mobile app. It can help dramatically save on development and maintenance if you compare a PWA with a native app. PWAs take advantage of the open standards offered by web browsers to provide the benefits of a rich mobile experience.

Sample PWA

This sample Appery.io PWA developed in 16 hours looks like a native app and can work offline.

Native-like mobile experience

Surf over in iOS Safari or Android Chrome to https://pizza-pwa.app.appery.io/ and add the opened page to your phone’s home screen to create a seamless native-like mobile experience.

Please note that changing the demo database content is disabled.

Working offline

A service worker (a script staying behind the scene) uses a cache mechanism to manage HTTP requests. Opening the app for the first time online saves all the data on to the device automatically. When offline, searching and listing stay fully functional effortlessly. (Please note that iOS 11.4.1 provides limited support of this feature.)

Programming a PWA

Making a PWA is as easy as 1, 2, 3 with Appery.io‘s support for the development of Ionic 3, Ionic 1, and JQuery apps. Just pick the Ionic 3 option to start developing a PWA. To review or reuse the sample Pizza PWA download this zip archive. The demo app consists of:

  • HTML5 pages
  • A service worker
  • An Appery.io Mongo database
  • A JSON-based manifest

After restoring it into Appery.io, make sure that the app refers to a valid database, and the appropriate plug-in is installed. Once all these steps are taken care of, run the building process. VoilĂ , the demo app is ready for testing.

Testing a PWA

Google published a checklist that breaks down all the things that are important in order to develop a basic PWA. And, the checklist shows you how to go further to make a truly advanced PWA, one that provides a more meaningful offline experience and reaches interactivity even faster, along with other improvements.

For verification of many items on this checklist, Google suggests using the Lighthouse tool.

In addition, the following tools can be utilized to validate some items on the checklist:

  • Selenium and other WebDriver-based frameworks
  • Headless browser tools like Google puppeteer, PhantomJS, and JSDom
  • Appium and Espresso

Are you up to developing a PWA? Then start using Appery.io for FREE!

The September Release with Ionic 3 Support Has Arrived!

The September release for the Appery.io mobile app platform has just been rolled out. This announcement post will be very short…because we have only one main update. Here it is:

Ionic Version 3 Support

You asked, and we heard. Support for the latest version of this advanced framework has been added into Appery.io. We now support Ionic 3 with all its features. For now, the platform support for Ionic 3 is in beta, but fully usable. Also, you won’t have to abandon your existing projects in Ionic as Ionic 3 will appear as a separate framework.

Hacking a Hackathon with Appery.io

A hackathon is usually an all day long coding competition where a motley team of software programmers, developers, and designers sit together to design and develop something quickly. The goal of a hackathon is to create usable software in the least amount of time. In order to avoid the burden of building infrastructure and steep learning curve issues, many hackathon attendees (“hackathonees”) search for a Swiss army knife to use.

Luckily, with Appery.io, a cloud-based rapid software development platform, hackathonees satisfy all of these goals. Among them are top-notch companies such as a the largest bank in the Middle East, a worldwide healthcare company, and a global hackathon organization that has already fueled many internal and public codefests with Appery.io.

Concentrate on Innovation Not Infrastructure

Appery.io has integrated mobile back-end services, including database, push, and server code. In addition, it can be used to easily and securely integrate apps with any back-end system. Offline synchronization is included, too. And, dozens of free out-of-the-box plugins are available.

Smooth Learning Curve

According to the Appery.io community members, it takes just 2 to 3 days for a novice to master the platform and start building functional hybrid apps. (Of course, some basic knowledge of JavaScript, HTML, CSS, and databases are nice to have to make the learning curve shorter.) In addition, the platform has tons of well-organized DIY videos and manuals as well as free downloadable sample apps.

Easy to Start

Here is a five-minute video showing how to build a mobile app with a cloud database from A to Z.

Are you a hackathonee? Start using Appery.io for FREE!

Baking a Pizza Application Ă  la Appery.io in 5 Minutes

In software development, the four basic functions are represented by the acronym CRUD: Create, Read, Update, and Delete. These facilitate viewing, searching, and changing information. Every application requires the presence of such functions.

If you are up to building a responsive web application in the most cost-effective way, using the Appery.io Pizza sample can be very handy. The sample is a fully functional responsive application—based on Google’s Material Design—to present pizza recipes along with ingredients. It includes create, read, update and delete functions as well as searching and filtering. In terms of components, the application consists of:

  • Appery.io plug-in
  • Database
  • Server-side script

In order to make it live, you need very little in the way of development skills. It takes literally five minutes for a citizen developer to assemble the application out of building blocks as described in https://docs.appery.io/docs/material-angularjs-app-plugin-example. To further perfect the application, you can add more spicy features to fit your tastes as listed in https://docs.appery.io/docs/samples-overview.

VoilĂ , the Pizza application is ready!

From Startup to Enterprise: Leveraging Appery.io

Israel, a tiny country of only eight million people, has more startups per capita than any other country in the world. Most of the Israeli startups are focused on cybersecurity, digital marketing, medical equipment, and SaaS-based technologies. Unfortunately, Israeli startups have been struggling to scale for the last decade. Only a few companies have scaled up into enterprises. This is disappointing for a country with so much potential.

Each startup is unique, but every entrepreneur faces the same set of strategic challenges to overcome. According to successful entrepreneurs, once a startup is initiated, the founder needs to pay special attention to a few of the long-term strategic questions for scaling up.

  • How do I strengthen my market position through innovation?
  • How do I support growth in human capital?
  • How do I attract foreign venture capital investors?

As part of focusing on these strategic points, the leading cloud-based, rapid development environment for building mobile and responsive apps, known as Appery.io, can become a Swiss army knife for entrepreneurs. Here’s why:

Concentrate on Innovation Not Infrastructure

With Appery.io, a citizen developer can build a basic mobile hybrid app connected to a cloud database literally in five minutes.

Furthermore, a team of professional developers can easily power up the original basic app with Appery.io built-in enterprise features. In a recent success story, we described such a collaboration in which the customer drafted the app screens using the platform and then our developers added in the rest.

Scale the Team Quickly

With R&D centers in North America and Europe, Appery.io can augment a startup team with five-hour, forty-hour, or longer assignments. And, a 24/7 support line is available to customers. All Appery.io in-house professionals are creative thinkers and leaders. In addition, they speak fluent English and Russian.

Gateway to the World Market

Appery.io provides several pathways into the world market for startups. Appery.io also has an extensive platform community of over 300,000 customers across the world. In addition, the Appery.io website publishes many success stories of innovative projects using its platform to a world-wide audience:

Final Words

One more thing. Nothing is written in stone. Dare to desire. Appery.io is here to assist you.

Build an Appery.io Hybrid App to Hook Up with Ethereum

While Bitcoin cryptocurrency is revolutionizing online payments, Ethereum is now ready to revolutionize any industry that deals with data or transactions of any kind:

  • Banking and payments
  • Cybersecurity
  • Supply chain management
  • Networking and IoT
  • Forecasting
  • Insurance
  • Private transport & ride sharing
  • Online data storage
  • Charity
  • Voting
  • Government
  • Public benefits
  • Healthcare
  • Energy management
  • Online music
  • Retail
  • Real estate
  • Crowdfunding

All the blockchain-based systems such as Bitcoin or Ethereum are software. In order to start using Ethereum, a wallet along with an associated address is required. Once this is in place, a dispatched transaction can be broadcast to the network, where “miners” verify it and add it to the transaction history.

Using Appery.io with Ethereum

Naturally, it’s quite easy to use Appery.io to build a hybrid app hooked up with Ethereum. It just takes a few simple steps to build the wallet and ready the Ethereum setup.

First things first. In order to do anything on an Ethereum network you need to create an account. There are various ways to go about this, but the simplest one, suggested by Ethereum developers, is through the command line tool. Once this is done, a public key and a private key are issued. The public key is your unique address on the network.

After that, if you want to go with your own cryptocurrency, you need to build a smart contract using the command line. This produces a unique smart contract address. Also, make sure that you manifest enough of your own coins on your smart contract.

Next, the easiest way to develop the wallet app is to leverage the Appery.io API Express Ethereum component. With Appery.io, a citizen developer can concentrate on innovation not infrastructure to build the wallet app. The wallet is a two-page app. The first page shows the current balance in various cryptocurrencies as well as a list of transactions. The second page executes transactions. In addition, a sign-in page can be introduced to address security issues. Under the hood, the Appery.io API Express Ethereum services (built into the component) consume the aforementioned account and contract addresses to do the job.

Then, you need to top up your account to start testing the wallet app. In order to obtain free test Ethers, please go to faucet.rinkeby.io.

Finally, start the wallet app. Voilà! Now you are ready to send and receive cryptocoins.

Screencap Gallery

Learn How to Build an Appery.io Hybrid App to Hook Up with Ethereum Learn How to Build an Appery.io Hybrid App to Hook Up with Ethereum Learn How to Build an Appery.io Hybrid App to Hook Up with Ethereum

 

A Look Ahead: Ionic 3 App Builder Version in Appery.io

 

This summer we will introduce a beta version of Ionic 3 App Builder in Appery.io! This will be a huge step forward for us and we would like to ask You, our customers, to help us test this mobile app development framework version in our platform.

Ionic 3 will be compatible with Angular 4 and comes with many significant performance, usability, and feature improvements over past versions.

This beta version will include the Ionic 3 components and only basic Appery.io platform features. (More details about specific features will be announced in a follow-up to this post.)

Thanks for staying with us all this time, and we hope You will like our new Ionic 3 version.