Skip to content

Add ability to set gradle version #222

Description

@marchbold

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"
    }
  }

Metadata

Metadata

Assignees

Labels

enhancementNew feature or request
No fields configured for Feature.

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions