Questions tagged [incompatibility]

302 questions
5
votes
4 answers

Incompatibilities between java versions

There is a complex piece of code that does many complex mathematical operations. When it is built and tested by maven on jdk 1.7 it passes all the tests. When using jdk 1.8 it fails. Trying to find the spot where the calculations go wrong in a…
Anton
  • 2,282
  • 26
  • 43
5
votes
0 answers

Unable to open portable projects in vs2013

I have a several (c#) solutions (originally created with VS2012) that include portable libraries that I have trouble opening with VS2013. Some of them fail to open with Unsupported This version of Visual Studio is unable to open the following…
4
votes
1 answer

Flutter Camera Plugin Version 0.8.1 not compatible with AndroidX

When executing Flutter run I'm getting the following error due to incompatibilities with the Camera plugin library. Any…
Dyan
  • 1,703
  • 4
  • 19
  • 26
4
votes
3 answers

Disable crashlytics for flutter web app and enable for flutter mobile app

I wanted to disable crashlytics for web and keep it enabled in android and iOS on my flutter app since firebase crashlytics is not supported by web. Can anyone tell me how I am supposed to do it. There is no Platform.isWeb so that's why I am…
Lakshya Jain
  • 186
  • 1
  • 11
4
votes
1 answer

flutter: Error: The non-abstract class 'RenderParagraphX' is missing implementations for these members, caused by sliding_up_panel-1.0.2

Since I updated flutter, yesterday, I am receiving the following error message: Launching lib/main.dart on iPhone 11 Pro Max in debug mode... Running Xcode build... Xcode build done. 23,5s Failed to build…
w461
  • 2,168
  • 4
  • 14
  • 40
4
votes
1 answer

java.lang.NoSuchMethodError: scala.Predef$.refArrayOps in Spark job with Scala

Full error: Exception in thread "main" java.lang.NoSuchMethodError: scala.Predef$.refArrayOps([Ljava/lang/Object;)[Ljava/lang/Object; at org.spark_module.SparkModule$.main(SparkModule.scala:62) at…
Scaramouche
  • 3,188
  • 2
  • 20
  • 46
4
votes
2 answers

Google Play services out of date. Requires 11910000 but found 11577470

I'm trying to include Firebase in my Android project. Running it, throws me this error: Google Play services out of date. Requires 11910000 but found 11577470 I found several links about this here, most of them saying to downgrade to: compile…
4
votes
2 answers

Pub Error: Incompatible version constraints on analyzer

I have a very weird problem. I have some dependencies that previous to adding a new dependency work well, but as soon as I add a new one (in this specific case async_await) I get an Incompatible version constraints on analyzer error when using pub…
Cristian Garcia
  • 9,630
  • 6
  • 54
  • 75
4
votes
2 answers

Weird `return` behaviour when switching from matz ruby to jruby

Why does this snippet: def dump_dump get_dump = lambda do return 1 if $n $n = true module_exec &get_dump 2 end p get_dump[] end Module.new do module_exec &method(:dump_dump) end print 2 in ruby…
Nakilon
  • 34,866
  • 14
  • 107
  • 142
4
votes
0 answers

Device NOT COMPATIBLE for Android Studio

I've connected a Virgin Mobile Kyocera EVENT mobile phone (which uses the Android operating system) to my computer. I'm developing an app using Android Studio. I have the driver installed for the phone. When I select to RUN the app and the device…
Roger Garrett
  • 349
  • 1
  • 7
  • 13
4
votes
1 answer

Upgrading from PHP 5.2 to PHP 5.3 - Backward Incompatible Changes - How to detect easily?

I am looking to upgrade a large PHP website from 5.2 to 5.3 and potentially beyond afterwards. The inherited codebase I am working on is very large, 800,000+ lines of code, and for the most part looking at the backwards incompatible changes list…
Rob
  • 85
  • 1
  • 9
4
votes
3 answers

The return types are incompatible for the inherited methods

class A { public A get() { } } class B extends A { } The return types are incompatible for the inherited methods, how to solve this problem ?
nabil
  • 904
  • 3
  • 12
  • 28
3
votes
1 answer

Aptana Debugger incompatible with Firefox 9.0.1 - what to do?

When I try to start Debug in Aptana 3, the Aptana main page isn't loaded, and I only receive a sockets error message. Firefox 9.0.1 reports that the Aptana Debugger is incompatible with this version, and Aptana Debugger Addon tells me that it can…
3
votes
3 answers

Firebase CLI v10.0.1 is incompatible with Node.js v10.24.1 Please upgrade Node.js >=12

I am facing this issue while deploying my firebase function through Git Actions Firebase CLI v10.0.1 is incompatible with Node.js v10.24.1 Please upgrade Node.js to version >= 12 My Firebase version:9.16.6 Node version : 14.15.4.. Edit: Here is…
Soniya Biyani
  • 49
  • 1
  • 2
3
votes
1 answer

Incompatible pointer types assigning to 'NSHTTPURLResponse *' from 'NSURLResponse *'

I get the warning Incompatible pointer types assigning to 'NSHTTPURLResponse *' from 'NSURLResponse *' in the code below. This method is part of Sharekit. The line with the warning is the bolded/italicized one: -…
SimplyKiwi
  • 12,376
  • 22
  • 105
  • 191
1 2
3
20 21