Setting up the environment
For Windows devices, you need:
- Microsoft Windows 8.1 or Windows 10
- Microsoft Visual Studio 2015
- Microsoft Visual Studio Tools for Apache Cordova
Setting up Visual Studio Project for AEM Forms app
Perform the following steps to set up the AEM Forms app project in Visual Studio.
- Copy the
adobe-lc-mobileworkspace-src-<version>.zip
archive to%HOMEPATH%\Projects
folder in the Windows 8.1 or Windows 10 device with Visual Studio 2015 installed and configured. - Extract the archive in the
%HOMEPATH%\Projects\MobileWorkspace
directory. - Navigate to the
%HOMEPATH%\Projects\MobileWorkspace\adobe-lc-mobileworkspace-src-[versionsrc]\windows
directory. - Open the
CordovaApp.sln
file using Visual Studio 2015 and proceed to building the AEM Forms app.
Build AEM Forms app
Perform the following steps to build and deploy AEM Forms app.
-
In the Visual Studio Standard Toolbar, select Release from the drop-down for build mode.
-
Select Windows-AnyCPU, Windows-x64, or Windows-x86 based on your platform. Windows-AnyCPU is recommended.
-
In the Visual Studio Solution Explorer, right-click the project CordovaApp.Windows and select Store > Create AppPackages.
The Create App Packages wizard appears.
The CordovaApp.Windows_3.0.2.0_anycpu.appx installer file is created in the platforms\windows\AppPackages\CordovaApp.Windows_3.0.2.0_anycpu_Test directory.
If you encounter the error
Retarget to windows 8.1 required
, right-click the error and in the pop-up menu, select Retarget To Windows 8.1. -
In the Create App Packages wizard, select weather or not you want to upload your app to the windows store and then click Next.
-
Make the changes in the parameters, such as the version and output location of the app build, as required.
-
After the project is built, you can install the app using:
- Windows PowerShell
- Visual Studio
The
.appx
package requires the following items to install successfully:- WinJS library
- Ensure that the package comes with a self-signed certificate, or a trusted authority signed public certificate such as VeriSign.
- Developer license
The directory Platforms\windows\AppPackages\CordovaApp.Windows_3.0.2.0_anycpu_Test contains the four main components in it:
.appx
file- Certificate (Currently it is a self-signed certificate by Apache Cordova)
- Dependency folder
- PowerShell file (.ps1 extension)
Deploying an app using Windows PowerShell
There are two ways to install the application on a Windows device.
By acquiring the developer license
-
Right-click on the PowerShell file (
Add-AppDevPackage.ps1)
, and choose Run with PowerShell. -
The setup prompts you to get a developer license. Use Microsoft account credentials to acquire developer license.
This license is valid for 30 days, and you can renew it for free.
-
When you acquire the developer license, the setup installs the self-signed certificate on the system and application installs successfully.
By using enterprise owned devices
For enterprise owned devices that are joined to the domain of the enterprise, acquiring a developer license is not required.
Enterprise owned devices use Professional and Enterprise editions of Windows.
Microsoft recommends that you install a trusted authority issued public certificate such as VeriSign.
To deploy the app:
- Ensure that the device is joined to the domain of the enterprise.
- Enable group policy setting.
To enable group policy setting:
-
In your device, run
gpedit.msc
. -
Navigate to Computer Configuration > Administrative Templates > Windows Component > App Package Deployment.
-
Right-click on Allow all trusted apps to install.
-
Click Edit and select Enabled.
-
Click OK.
Edit the Visual Studio generated PowerShell script to stop it from acquiring developer license.
In the PowerShell script, set the variable: $NeedDeveloperLicense = $false
.
For devices that are not domain-joined, side-loading product activation key is required. You can purchase it from a Windows reseller.
For Windows 8.1 Home edition, there is no group policy, the enterprise side-loading is not allowed, and you cannot join it with the enterprise domain. Deploy the app on a Windows 8.1 Home Edition device using developer license.
For more information, click here.