Fragging with no V4 support - android-fragments

Is there a fragging assembly that has been compiled without V4 support? When getting Fragging via Nuget, I'm stuck with a project that depends on Support.V4, but I'm targeting API Level 14.

Have you tried FullFragging?
http://www.nuget.org/packages/MvvmCross.HotTuna.Droid.FullFragging/
from https://github.com/MvvmCross/MvvmCross/issues/406

You can continue targeting API Level 14 with V4 Support assembly, you must convert your Fragments to V4.Fragements

Related

Hard dependency issue between Newtonsoft.Json & Azure Functions V2

Encountering below issue with Azure FunctionsV2 with .net core
"Detected package version outside of dependency constraint: Microsoft.NET.Sdk.Functions 1.0.29 requires Newtonsoft.Json (= 11.0.2) but version Newtonsoft.Json 12.0.3 was resolved"
Tried out below but no luck:
BindingRedirects not working with .net core
Upgrading Microsoft.NET.Sdk.Functions 1.0.29 to 1.0.30 leads to broken build in CI pipeline.
Why this hard dependency between Newtonsoft.Json & Azure FunctionsV2? Any workaround?
Nobody knows and Microsoft isn't saying: https://github.com/Azure/azure-functions-host/issues/4049
The solution is to update to the latest version of the v2 Microsoft.NET.Sdk.Functions SDK package which is 1.0.31 at the time of this writing. I don't know why you didn't just do this as part of troubleshooting.
Alternatively you can update to .NET Core 3 and Azure functions v3, i.e. any of the 3.x versions of Microsoft.NET.Sdk.Functions.
newtonsoft json version is = not >=. This problem has been around for a long time, MS tracking this work here: https://github.com/Azure/azure-functions-vs-build-sdk/issues/304
Create function v3 to avoid this error.

REST API Specification Location?

I'm attempting to get a clear view of the current state of the REST API in a deployed Artifactory Server in v6.x, primarily to auto-generate a javascript SDK.
Previously the REST API had a WADL file hosted at http://:/artifactory/api/application.wadl but it appears this has been removed as of v6 (v5 documentation shows it https://www.jfrog.com/confluence/display/RTF5X/Artifactory+REST+API) but this is missing as of the v6 documentation.
Does anyone know if the specification for the API is available anywhere?
Unfortunately, the WADL file is no longer available to be downloaded through JFrog Artifactory. The complete documentation for the REST API is available in the documentation though.

Combining RTCMultiConnection v3 and meteor

How do I get the new v3 of https://github.com/muaz-khan/RTCMultiConnection to work with Meteor. It seems to need Socket.io....
I had v2 working by trading the session ids through the server myself, is that possible again to keep my code?
You can run v3 on a separate port 9001 or similar; and your meteor application (or PHP/ASPX pages) can use/access that port internally. E.g.
// in your meteor page or PHP page
connection.socketURL = 'https://yourdomain.com:9001/';
Now you can take any HTML demo or code from v3 and it will work in your meteor application.
v3 also supports Firebase/PubNub however socket.io is preferred.

What is dotnet5.4 and net451 in class library?

In aspnet 5 I created a project which came with dotnet5.4 and net451. Since it's a class library I assume it does not need the runtime so uses net451 instead of dnx451 (my wild guess). But what about dotnet5.4 what exactly is that for ?
UPDATE: With this announcement, the monikers will probably change again. This answer is only scoped to the release of RC1. Any release further than RC2 won't apply here.
Basically, dnxcore50 became dotnet5.4 and dnx451 became net451.
Those were temporary to begin with and were bound to change prior to the final release.
Most of this information can be found here:
https://github.com/aspnet/Announcements/issues/98
But what about dotnet5.4 what exactly is that for ?
From Announcing ASP.NET 5 Release Candidate 1:
With this version of ASP.NET 5 templates, the “Class Library (package)” project template will target “dotnet5.4” which has binary compatibility with .NET 4.6, .NET Core 5, and Mono.

Where do I get servlet-api.jar from?

In order to write servlets code I need servlet-api.jar.
Where do i get servlet-api.jar from ?
Make sure that you're using the same Servlet API specification that your Web container supports. Refer to this chart if you're using Tomcat: http://tomcat.apache.org/whichversion.html
The Web container that you use will definitely have the API jars you require.
Tomcat 6 for example has it in apache-tomcat-6.0.26/lib/servlet-api.jar
Grab it from here
Just choose required version and click 'Binary'. e.g direct link to version 2.5
You may want to consider using Java EE, which includes the javax.servlet.* packages. If you require a specific version of the servlet api, for instance to target a specific web application server, you will probably want the Java EE version which matches, see this version table.
You can find a recent servlet-api.jar in Tomcat 6 or 7 lib directory. If you don't have Tomcat on your machine, download the binary distribution of version 6 or 7 from http://tomcat.apache.org/download-70.cgi

Resources