Delphi

Change dproj file and product version

Author: Rubén Pozo If you have a project with automatic builds is posible that you want change the File/Product version of the file. Using the code below you can create a console application for to modify these values easily. program ChangeVersion; {$APPTYPE CONSOLE} {$R *.res} uses System.SysUtils, UnParseDproj in 'UnParseDproj.pas'; procedure ChangeDprojVersion; var DprojParser…
Read more
News

Skill Sprint: Android Services for Background Execution

Author: Developer Skill Sprints New in Delphi and RAD Studio 10 Seattle is the ability to create Android services for background execution on Android, even when the app isn’t running. Register now for November 10th, 2015 This page will be updated with more information, resources and a replay after the Skill Sprint. Sample application using Location services in a Local Android Background…
Read more
C++

How to use custom Info.plist XML to support iOS 9's new App Transport Security feature

Apple introduced the new “Apple Transport Security” feature in iOS9 to restrict apps that use HTTP protocol requests behind the scenes. To allow your app to use HTTP, Apple provides Info.plist settings. This new feature will have an impact on the execution of apps that use HTTP directly or use components and RTL functions that use HTTP behind the scenes. TAppAnalytics and TWebBrowser…
Read more