Newer builds of extensions require specific / minimum versions of gradle to be used to build which can currently be specified in the application descriptor.
We need the ability to add this information to a package and then use this information when generating the application descriptor
Proposed updates to project.apm:
{
"identifier": "com.my.app",
"name": "APM Test Application",
"filename": "APMTestApplication",
"version": "1.0.0",
"versionLabel": "",
"platforms": [],
"platformConfigurations": {
"android": {
"gradleVersion": "8.9",
"androidGradlePluginVersion": "8.7.3"
},
"ios": {
"deploymentTarget": "12.0"
}
},
Proposed updates to package.json:
"platforms": ["android", "iOS", "tvOS"],
"platformParameters": {
"android": {
"gradleVersion": "8.9",
"androidGradlePluginVersion": "8.7.3"
},
"ios": {
"deploymentTarget": "14.0"
}
}
Newer builds of extensions require specific / minimum versions of gradle to be used to build which can currently be specified in the application descriptor.
We need the ability to add this information to a package and then use this information when generating the application descriptor
Proposed updates to
project.apm:{ "identifier": "com.my.app", "name": "APM Test Application", "filename": "APMTestApplication", "version": "1.0.0", "versionLabel": "", "platforms": [], "platformConfigurations": { "android": { "gradleVersion": "8.9", "androidGradlePluginVersion": "8.7.3" }, "ios": { "deploymentTarget": "12.0" } },Proposed updates to
package.json: