I am getting the following error when try to build / run the Ionic2 application.
Execution failed for task ':processDebugGoogleServices'.
Please fix the version conflict either by updating the version of the google-services plugin (information about the latest version is available at https://bintray.com/android/android-tools/com.google.gms.google-services/) or updating the version of com.google.android.gms to 11.0.1.
I have found similar question https://stackoverflow.com/questions/45080323/execution-failed-for-task-processdebuggoogleservices but it didn't solve my problem.
Please help me to fix this error
#Anand,
Try to remove the android platform and add the latest version by the following command.
ionic cordova platform add android#latest
Let me know if it solved your problem.
Related
I am trying to understand why I keep getting this error.
ERROR ITMS-90062: "This bundle is invalid. The value for key CFBundleShortVersionString [0.0.2] in the Info.plist file must contain a higher version than that of the previously approved version [3.11]. Please find more information about CFBundleShortVersionString at https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleshortversionstring"
Although we are building our app using Ionic / Cordova, the actual app is built using Xcode.
In Xcode 11.5, it is clearly marked as:
- Version: 3.11
- Build: 0.0.1
and when I go to AppStore Connect -> Activity, the current version that is marked as "Ready for Sale" is:
- Version 3.11
- Build 0.0.1
To me, it should be a simple process. It I have a small fix, I want this to be Version 3.11, Build 0.0.2
'Version' is for major fixes/new features, and 'Build' is for minor fixes (typos, color changes, other aesthetics).
Yes, when I try to upload Version 3.11, Build 0.0.2 to the Appstore Connect, I get the ERROR ITMS-90062.
Any advice? I really don't know what I am doing wrong.
Derek
Resolved! The lightbulb went off :)
Each approved app must have a new, increasing Version Number.
We can upload multiple builds to App Store Connect (and TestFlight), each with an increasing Build Number, for any Version Number. Only when testing is complete, then we submit one of those Builds for approval..and hence a new version bump.
I tried install System.Data.OleDb to my project, but got this error message :
https://i.imagesup.co/images2/cd8b36741a610a4d7d490ece6a892831599377ab.png
Not sure what to do, and what could solve this problem.
Can't install System.Data.OleDb
The main reason is that System.Data.OleDb does not support framework version < v4.6.1. See this:
Besides,from your error message, your project is target to use Net Framework 3.5. So the error occurs.
Solution
To solve the issue, you should right-click on your project-->Properties-->Application-->change Target Framework to >= Net Framework 4.6.1.
Hope it could help you.
After I created the blazor application in Visual studio . When i trying to run or build the application am getting this error.
I used dotnet restore and dotnet build .
This was the fix for me https://github.com/dotnet/aspnetcore/issues/20857
If you check the build ouput window, you might see a more useful error like:
This showed that I needed to install the lastest .NET runtime from https://dotnet.microsoft.com/download/dotnet-core/thank-you/runtime-aspnetcore-3.1.5-windows-hosting-bundle-installer
For me, installing 2.1 SDK did the trick. Here is the link to it: https://dotnet.microsoft.com/download/dotnet/2.1
I updated Visual Studio to 2019 v16.9.2 and that fixed it for me.
I also read another post where repairing the VS installation fixed the problem.
My problem started mysteriously after everything had been working for some time, so I don't think it was an issue with the version. I think just running the upgrade repaired the installation.
After downloading updates it shows a error that can't install updates .
An error occurred while uninstalling
session context was:(profile=epp.package.cpp, phase=org.eclipse.equinox.internal.p2.engine.phases.Uninstall, operand=[R]org.eclipse.rcp.configuration_root.win32.win32.x86_64 1.0.0.v20130521-1847 --> null, action=org.eclipse.equinox.internal.p2.touchpoint.natives.actions.CleanupzipAction).
Backup of file D:\eclipse\eclipse.exe failed.
Can not remove : D:\eclipse\eclipse.exe
I'm running it under win7 and jdk1.7.0_21 64bit .
How fix it ?
Solution extracted from the forum linked in Anonymous answer:
Run eclipse
Rename eclipse exe to eclipse.exe.back
Run updates
Updates executed successfully
To match so guidelines:
Always quote the most relevant part of an important link, in case the target site is unreachable or goes permanently offline.
Refer this post: http://www.eclipse.org/forums/index.php/t/487240/. It helped in solving this problem for me.
Shown below for your convenience :
I had same issue with updating Kepler. W7 with admin.
How to solve:
Run eclipse Rename eclipse exe to eclipse.exe.back
Run updates
Updates executed successfully
Premysl Fiala
Create a new workspace. Eclipse Kepler does cause a problem if we work on the older workspace. Worked for me.
I have been following the tutorial found here for a SpecFlow test report generator.
My issue is, when I run the tool, I receive the following message:
The attribute "Label" in element Target is unrecognized
I've found a few possible solutions, none of which have worked e.g. here
I am able to show that I am running version 4.x as when I run MSBuild using the Visual Studio 2012, command prompt I can see the following:
Microsoft (R) Build Engine version 4.0.30319.17929 [Microsoft .NET
Framework, version 4.0.30319.18052]
I have created a config file as suggested here
but unfortunately I am still getting the error. The project is running locally off git and this issue has been fixed in the past by using the config file, however since swapping to a VMware Virtual machine, it is now occurring again.
I have also right clicked > Properties which states that the file is using .NET 4.0, in addition created a Environment Variable linking directly to the MSBuild directory. I've spent a good while browsing the internet and cannot get this working. Please help!
Many thanks for any help you can provide,
Cheers!
Solved this with the internal devs. There was some problem with the Chromedriver update script which had been added by (I'm assuming NuGet)
Starting
<PropertyGroup Label="DownloadChromeDriverBuildTask">
and also:
<Target Name="DownloadChromeDriver" Label="DownloadChromeDriverBuildTask">
It was a small script that was installing ChromeDriver if it was not already available. Removing this seems to have resolved it. Hope this provides help to anyone with a similar issue.