[ERROR] Failed to execute goal com.simpligility.maven.plugins:android-maven-plugin:4.6.0:manifest-merger (update-manifest) on project forge-gui-android: Execution update-manifest of goal com.simpligility.maven.plugins:android-maven-plugin:4.6.0:manifest-merger failed: FeatureName must follow [a-zA-Z0-9][a-zA-Z0-9_]* regex, found -> [Help 1]
there is the code:
|
builder.mergeManifestsForApplication( |
|
androidManifestFile, // mainManifest |
|
new ArrayList<File>(), // manifestOverlays |
|
manifestDependencies, // libraries |
|
"", // packageOverride |
|
versionCode, // versionCode |
|
parsedVersionName, // versionName |
|
minSdkVersion, // minSdkVersion |
|
targetSdkVersion, // targetSdkVersion |
|
null, // maxSdkVersion |
see this change in the android tools?
https://android.googlesource.com/platform/tools/base/+/bcfd5995fdd31ca4e32b315a29db09807e598e38%5E%21/build-system/builder/src/main/java/com/android/builder/core/AndroidBuilder.java
- /**
- * Invoke the Manifest Merger version 2.
- */
+ /** Invoke the Manifest Merger version 2. */
public MergingReport mergeManifestsForApplication(
@NonNull File mainManifest,
@NonNull List<File> manifestOverlays,
@NonNull List<? extends ManifestProvider> dependencies,
+ @Nullable String featureName,
String packageOverride,
int versionCode,
String versionName,
I don't know exactly what the featureName should be or if it should be null
[ERROR] Failed to execute goal com.simpligility.maven.plugins:android-maven-plugin:4.6.0:manifest-merger (update-manifest) on project forge-gui-android: Execution update-manifest of goal com.simpligility.maven.plugins:android-maven-plugin:4.6.0:manifest-merger failed: FeatureName must follow [a-zA-Z0-9][a-zA-Z0-9_]* regex, found -> [Help 1]
there is the code:
android-maven-plugin/src/main/java/com/simpligility/maven/plugins/android/standalonemojos/ManifestMergerMojo.java
Lines 371 to 380 in acaf0ee
see this change in the android tools?
https://android.googlesource.com/platform/tools/base/+/bcfd5995fdd31ca4e32b315a29db09807e598e38%5E%21/build-system/builder/src/main/java/com/android/builder/core/AndroidBuilder.java
I don't know exactly what the
featureNameshould be or if it should benull