Skip to main content

5 posts tagged with "tips"

View All Tags

Edge-to-Edge Displays

· 5 min read
Michael
Lead Developer

Edge-to-edge layouts means that the window spans the entire width and height of the display by drawing behind the system bars including the status bar, caption bar, and navigation bar.

This means that your content may render behind operating system elements and you will need to account for this in the design and execution of your application. You will likely want to render certain content under the system UI, such as scrolling and non-UI elements however it is important that your interactive elements never get rendered in these areas.

For example in the following a button is obscured by the navigation bar:

ObscuredCorrectly Rendered

Using the methods here you will be able to correctly implement these solutions in your application.

Delay Loading Extensions

· 5 min read
Michael
Lead Developer

Startup time of an application is often key in retaining your users so it can be critical to make start time as short as possible.

One factor that can contribute to the startup time of an AIR application is loading the definitions for the functionality in native extensions. This is normally done by AIR automatically however with the latest AIR release you can now specify an option on an extension in your application to delay load the extension functionality.

Game Center requirements

· 2 min read
Michael
Lead Developer

If you are publishing games to the AppStore for iOS you may have recently received an notification along the following lines:

Upcoming Game Center entitlement requirement

Starting August 16, 2023, new apps and app updates that offer Game Center features need to include the Game Center entitlement and have Game Center features configured in App Store Connect before you can submit them to the App Store. Existing apps on the App Store are not affected by this new requirement.

We noticed that although the apps listed below have Game Center features configured in App Store Connect, their latest binary delivery doesn’t include the Game Center entitlement. In your next app update, please update your binary to include the entitlement.

There are two important things you need to do to your application in order to meet this new requirement.

Accessing GDPR Settings

· 2 min read
Michael
Lead Developer

At some point in your application development when you start to store and share data you will need to handle user GDPR settings.

GDPR

The General Data Protection Regulation (GDPR) is a European Union (EU) regulation that mandates how an organisation should handle personal data.

If you use personalised advertising or store user related data on your server then you will need to address GDPR concerns in your application.