My app ID is 638197. I've been wrestling with doing this update all week long and I just really don't have a clue where I'm going wrong any more.
My Android build fails almost immediately with this error
Execution failed for task ':processReleaseManifest'.
And my iOS build fails with this error:
The following build commands failed:
CompileC build/YourHighPoint.build/Release-iphoneos/YourHighPoint.build/Objects-normal/armv7/CDVInAppBrowser.o YourHighPoint/Plugins/cordova-plugin-inappbrowser/CDVInAppBrowser.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
(1 failure)
The iOS build has failed on successive plugins, many of which I've removed but we're getting down to bare bones here...
Below is my config.xml and below that the two Failure Errors.
<!-- config.xml reference: https://build.phonegap.com/docs/confi... -->
115
. . .
. . .
. . .
<!--
If you do not want any permissions to be added to your app, add the
following tag to your config.xml; you will still have the INTERNET
permission on your app, which PhoneGap requires.
-->
<!-- Customize your app and platform with the preference element. -->
<!-- all: default means both landscape and portrait are enabled -->
<!-- all: possible values handset, tablet, or universal -->
<!-- all: hides the status bar at the top of the screen -->
<!--
<preference name="StatusBarOverlaysWebView" value="true" />
<preference name="StatusBarStyle" value="blackopaque" />
<preference name="ios-statusbarstyle" value="black-opaque" />
-->
<!-- ios: black-translucent will appear black because the PhoneGap webview doesn't go beneath the status bar -->
<!-- ios: control whether the screen 'bounces' when scrolled beyond the top -->
<!-- ios: if icon is prerendered, iOS will not apply its gloss to the app's icon on the user's home screen -->
<!-- ios: external links should open in the default browser, 'true' would use the webview the app lives in -->
<!-- ios: controls whether data types (such as phone no. and dates) are automatically turned into links by the system -->
<!-- ios: if set to true, app will terminate when home button is pressed -->
<!-- ios: if set to false, the spinner won't appear on the splash screen during app loading -->
<!-- ios: if set to false, the splash screen must be hidden using a JavaScript API -->
<!-- android: MIN SDK version supported on the target device. MAX version is blank by default. 11 supports down to Android ver. 3.0 Honeycomb. -->
<!-- android: app install location. 'auto' will choose. 'internalOnly' is device memory. 'preferExternal' is SDCard. -->
<!--Specifies which build tool to compile the application. Valid build tools are 'gradle' and 'ant'. The default is 'ant'. -->
<!-- Plugins -->
<!-- Removed Plugins
<plugin name="cordova-plugin-camera" spec="1.0.0" />
<plugin name="cordova-plugin-contacts" spec="1.0.0" />
<plugin name="cordova-plugin-globalization" spec="1.0.0" />
<plugin name="cordova-plugin-file" spec="2.0.0" />
<plugin name="cordova-plugin-media-capture" spec="1.0.0" />
<plugin name="cordova-plugin-statusbar" spec="2.1.1" />
<plugin name="cordova-plugin-vibration" spec="1.0.0" />
<plugin name="de.appplant.cordova.plugin.hidden-statusbar-overlay" source="pgb" spec="1.2.0" />
-->
<!-- Android -->
<!-- iOS -->
——————————————
Android Error:
See http://g.co/androidstudio/manifest-me... for more information about the manifest merger.
:processReleaseManifest FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':processReleaseManifest'.
> Manifest merger failed : Attribute meta-data#com.google.android.gms.version@value value=(8115000) from AndroidManifest.xml:25:66-89
is also present at [com.google.android.gms:play-services-basement:8.4.0] AndroidManifest.xml:23:13-66 value=(@integer/google_play_services_version).
Suggestion: add 'tools:replace="android:value"' to element at AndroidManifest.xml:25:9-92 to override.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
BUILD FAILED
Total time: 27.085 secs
undefined
————————————
iOS Error
** BUILD FAILED **
The following build commands failed:
CompileC build/YourHighPoint.build/Release-iphoneos/YourHighPoint.build/Objects-normal/armv7/CDVInAppBrowser.o YourHighPoint/Plugins/cordova-plugin-inappbrowser/CDVInAppBrowser.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
(1 failure)
Any thoughts?
My Android build fails almost immediately with this error
Execution failed for task ':processReleaseManifest'.
And my iOS build fails with this error:
The following build commands failed:
CompileC build/YourHighPoint.build/Release-iphoneos/YourHighPoint.build/Objects-normal/armv7/CDVInAppBrowser.o YourHighPoint/Plugins/cordova-plugin-inappbrowser/CDVInAppBrowser.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
(1 failure)
The iOS build has failed on successive plugins, many of which I've removed but we're getting down to bare bones here...
Below is my config.xml and below that the two Failure Errors.
<!-- config.xml reference: https://build.phonegap.com/docs/confi... -->
115
. . .
. . .
. . .
<!--
If you do not want any permissions to be added to your app, add the
following tag to your config.xml; you will still have the INTERNET
permission on your app, which PhoneGap requires.
-->
<!-- Customize your app and platform with the preference element. -->
<!-- all: default means both landscape and portrait are enabled -->
<!-- all: possible values handset, tablet, or universal -->
<!-- all: hides the status bar at the top of the screen -->
<!--
<preference name="StatusBarOverlaysWebView" value="true" />
<preference name="StatusBarStyle" value="blackopaque" />
<preference name="ios-statusbarstyle" value="black-opaque" />
-->
<!-- ios: black-translucent will appear black because the PhoneGap webview doesn't go beneath the status bar -->
<!-- ios: control whether the screen 'bounces' when scrolled beyond the top -->
<!-- ios: if icon is prerendered, iOS will not apply its gloss to the app's icon on the user's home screen -->
<!-- ios: external links should open in the default browser, 'true' would use the webview the app lives in -->
<!-- ios: controls whether data types (such as phone no. and dates) are automatically turned into links by the system -->
<!-- ios: if set to true, app will terminate when home button is pressed -->
<!-- ios: if set to false, the spinner won't appear on the splash screen during app loading -->
<!-- ios: if set to false, the splash screen must be hidden using a JavaScript API -->
<!-- android: MIN SDK version supported on the target device. MAX version is blank by default. 11 supports down to Android ver. 3.0 Honeycomb. -->
<!-- android: app install location. 'auto' will choose. 'internalOnly' is device memory. 'preferExternal' is SDCard. -->
<!--Specifies which build tool to compile the application. Valid build tools are 'gradle' and 'ant'. The default is 'ant'. -->
<!-- Plugins -->
<!-- Removed Plugins
<plugin name="cordova-plugin-camera" spec="1.0.0" />
<plugin name="cordova-plugin-contacts" spec="1.0.0" />
<plugin name="cordova-plugin-globalization" spec="1.0.0" />
<plugin name="cordova-plugin-file" spec="2.0.0" />
<plugin name="cordova-plugin-media-capture" spec="1.0.0" />
<plugin name="cordova-plugin-statusbar" spec="2.1.1" />
<plugin name="cordova-plugin-vibration" spec="1.0.0" />
<plugin name="de.appplant.cordova.plugin.hidden-statusbar-overlay" source="pgb" spec="1.2.0" />
-->
<!-- Android -->
<!-- iOS -->
——————————————
Android Error:
See http://g.co/androidstudio/manifest-me... for more information about the manifest merger.
:processReleaseManifest FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':processReleaseManifest'.
> Manifest merger failed : Attribute meta-data#com.google.android.gms.version@value value=(8115000) from AndroidManifest.xml:25:66-89
is also present at [com.google.android.gms:play-services-basement:8.4.0] AndroidManifest.xml:23:13-66 value=(@integer/google_play_services_version).
Suggestion: add 'tools:replace="android:value"' to element at AndroidManifest.xml:25:9-92 to override.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
BUILD FAILED
Total time: 27.085 secs
undefined
————————————
iOS Error
** BUILD FAILED **
The following build commands failed:
CompileC build/YourHighPoint.build/Release-iphoneos/YourHighPoint.build/Objects-normal/armv7/CDVInAppBrowser.o YourHighPoint/Plugins/cordova-plugin-inappbrowser/CDVInAppBrowser.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
(1 failure)
Any thoughts?



