[codenameone]IPadOs 15 not supported in app build - codenameone

Just received IPAD 9th Gen running IpadOs 15.
Updated all certificates, verified installs work on IpadOs 14.71 on Ipad Gen 6
When Installing (Debug Build) on the 9th Gen IpadOs 15, get message dialog (Attached)
Thoughts?
Best Regards

Related

Pycharm : Robot Framework: SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 75

I am using Pycharm latest version as given below whenever I pass chrome as browser in my Robot test case it gives me the exception as "SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 75"
However, I have proper chromedriver that supports my current browser version of 77.0.3865.90 is placed under /user/local/bin with all correct permissions. Just to cross check, I have checked with firefox and it worked.
can you please let me how to resolve this as I need to run test on chrome.
---------------Pycharm details ---------------
PyCharm 2019.2.3 (Community Edition)
Build #PC-192.6817.19, built on September 25, 2019
Runtime version: 11.0.4+10-b304.69 x86_64
VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
macOS 10.14.6

Xcode 9 hangs while trying to debug app over WIFI

I have Xcode beta 3 and I am trying to debug over WIFI. I have followed all the steps mentioned in this answer https://stackoverflow.com/a/44383502/840520
I can see the device listed with a network icon even when its not connected by a cable, however when I try to run the app, it gets stuck at Signing the product and the Xcode hangs forever. My device has iOS 11 beta 2 installed on it.
I was not able to debug the app over WIFI even once.
Thanks in advance for all your answers.
I was having the same issue, but in Xcode 9 beta 4. I realized that my iOS device was still running an outdated beta (either 1 or 2).
I updated it to iOS 11 beta 4 and then Xcode 9 reinstalled the debugging tools on it and everything works as expected now.

How to Update to version 1.2 of pgAdmin 4,

I have downloaded and installed the latest version 1.2 for PGAdmin but I keep getting the message "You are currently running version 1.1 of PGAdmin 4, however the current version is 1.2"
What am I missing? (I'm on Windows 10 64-bit).
Did you uninstalled previous version before installing newer version?
If not then do so and try again.
I have Windows 7, but did you try something like: navigate to Control Panel\All Control Panel Items\Programs and Features, find pgAdmin 4 version [?], click it once, right-click, uninstall?

Unsupported major.minor version 51.0

I'm developing with CodenameOne in the IntelliJ IDE. When I choose "Send MacOS Desktop Build", I get this error message:
Unsupported major.minor version 51.0
My project SDK says 1.5 (Java Version 1.6.0_65)
My Language level is set to 5.0
I've done a rebuild, which should recompile everything, but I still get this error. Version 51 refers to Java 7. Can anyone tell me how to fix this?
Does your project have any 3rd party cn1libs? It is possible some of them have been compiled with Java 7.
A workaround in that case would be to change your project to use Java 8. (I think that is supported in IntelliJ, but not 100% sure). For changing the project to Java 8 there are a few settings you need to change. It is usually just easier to start a new project and check "Java 8" in the wizard. Then copy your sources over.
Please find the list of major minor version related issue.
J2SE 8 = 52,
J2SE 7 = 51,
J2SE 6.0 = 50,
J2SE 5.0 = 49,
JDK 1.4 = 48,
JDK 1.3 = 47,
JDK 1.2 = 46,
JDK 1.1 = 45
We can change the required compatible JDK Version from Configuration Page and it should work out.
This is a problem because we require a minimum of JDK 1.7 and now recommend JDK 8. You need to set IntelliJ to use that JDK and configure it to use it.
I had this issue while running cxf soap client.
Server: apache-tomcat-7.0.33
Error: java.lang.UnsupportedClassVersionError: org/apache/cxf/jaxws/JaxWsProxyFactoryBean :
Unsupported major.minor version 51.0
Resolution: Resolved this by compiling the app using jdk1.8.0_65. Earlier i was using jdk1.7.

Version of SQLite used in Android?

What is the version of SQLite used in Android?
Reason: I'm wondering how to handle schema migrations. The newer SQLite versions support an "ALTER TABLE" SQL command which would save me having to copy data, drop the table, recreate table and re-insert data.
Here is a link to the official docs which include the main points in this answer: android.database.sqlite package-level javadoc
Kotlin code to get framework SQLite version (tip: just stick a breakpoint in your Activity onCreate() and use this code in Evaluate Expression...):
val version = android.database.sqlite.SQLiteDatabase.create(null).use {
android.database.DatabaseUtils.stringForQuery(it, "SELECT sqlite_version()", null)
}
"Framework (API ${android.os.Build.VERSION.SDK_INT}) SQLite version: $version".also { println(it) }
Using the emulators (note, SQLite version on actual devices will be at least that specified):
API level*
Version
Name
SQLite
Notes
33
13
T
3.32.2
32
12L
Sv2
3.32.2
31
12
S
3.32.2
30
11
R
3.28.0
window functions
29
10
Q
3.22.0
28
9
Pie
3.22.0
27
8.1
Oreo
3.19.4
see 3.19.3 and version control check-ins because 3.19.4 link does not exist
26
8.0
Oreo
3.18.2
O beta versions used 3.18.0
25
7.1.1
Nougat
3.9.2
24
7.0
Nougat
3.9.2
23
6.0
Marshmallow
3.8.10.2
M Preview 1 (SDK level 22) used 3.8.10
22
5.1.1
Lollipop
3.8.6.1
see 3.8.6 and version control check-ins because 3.8.6.1 link does not exist
21
5.0
Lollipop
3.8.6
20
4.4W.2
Android Wear
unknown
no emulator available, but probably either 3.7.11 or 3.8.4.3
19
4.4
KitKat
3.7.11
18
4.3
Jelly Bean
3.7.11
17
4.2
Jelly Bean
3.7.11
16**
4.1
Jelly Bean
3.7.11
15
4.0.3
Ice Cream Sandwich
3.7.4
14**
4.0
Ice Cream Sandwich
3.7.4
13
3.2
Honeycomb
3.7.4
12
3.1
Honeycomb
3.7.4
11**
3.0
Honeycomb
3.7.4
10
2.3.3
Gingerbread
3.6.22
9
2.3.1
Gingerbread
3.6.22
8**
2.2
Froyo
3.6.22
7
2.1
Eclair
3.5.9
4
1.6
Donut
3.5.9
3**
1.5
Cupcake
3.5.9
* Android API level links show where the android.database.sqlite package has changed. Where there is no link (e.g. API level 17), indicates no changes to that package.
** Broken SDK link, see here
Note: if you want your app to use the same version of SQLite across all Android versions, consider using Requery's 3rd party SQLite support library or SQLCipher (if you also want encryption).
Although the documentation gives 3.4.0 as reference number, if you execute the following sql, you'll notice that there is a much higher number of SQlite installed:
Cursor cursor = SQLiteDatabase.create(null).rawQuery("select sqlite_version() AS sqlite_version", null);
String sqliteVersion = "";
while(cursor.moveToNext()){
sqliteVersion += cursor.getString(0);
}
This is just a piece of quick, dirty code to retrieve the sqlite version. For instance on a HTC Hero with Android 2.1, I get: 3.5.9.
On my Nexus One with Android 2.2, I even get 3.6.22.
$ adb shell sqlite3 --version
3.5.9
Same on ADP1 1.6 & 2.1 emulator.
A short overview of the Andorid APIs and the supported SQLite versions.
The overview is from the link in Mark Carters answer.
In Room you can query
SELECT sqlite_version()
RG

Resources