|
Post by Alex Epifanov on Aug 22, 2018 22:20:28 GMT
New RMS release coming September 2018. To be announced.
|
|
|
Post by egghead on Aug 29, 2018 15:12:41 GMT
Will KaiOS (https://developer.kaiostech.com) be supported in 7 or later or never or is it already supported?
|
|
|
Post by Super Admin on Aug 29, 2018 15:17:03 GMT
Will KaiOS (https://developer.kaiostech.com) be supported in 7 or later or never or is it already supported? Of course, if somebody willing to pay for it then we shall support this OS.
|
|
dabs
Full Member
Posts: 78
|
Post by dabs on Oct 8, 2018 19:04:08 GMT
Any updates on when the release will happen, or what it will contain?
|
|
|
Post by Alex Epifanov on Oct 10, 2018 2:08:34 GMT
dabsWe'll start publishing first betas about this week, maybe next one. Full list of updates is to be published yet but major ones are: New platform support added: Sailfish OS ( sailfishos.org/ ) Support for all latest iOS and Android updates ( iOS12 and Pie ) Support for new Android build tools ( NDK 17) QT 5.9 for RhoSim and desktops FCM push support for iOS
|
|
|
Post by Alex Epifanov on Oct 29, 2018 10:05:52 GMT
|
|
|
Post by Alex Epifanov on Oct 30, 2018 17:10:58 GMT
|
|
|
Post by Alex Epifanov on May 14, 2019 22:25:32 GMT
|
|
|
Post by fnllc on Jul 26, 2019 13:09:36 GMT
What Android SDK is recommended for RMS 7.1?
I saw somewhere that NDK 19 is required.
|
|
|
Post by jontara on Jul 26, 2019 23:46:54 GMT
You need current master, not the above beta.
I use (build.yml)
My app is meant to support Android 6.0 - current, so I set minSDK to prevent running on older OS.
Use NDK 20. You have to specify the path with rhodes-setup. I just use Android Studio locations. (download NDK in Android Studio now, rather than separate download).
I am testing 64-bit in Play Store. So far so good (after a number of glitches/fixes from the Tau team, thanks!)
# Guide to the confusing Android versions... # Note additional SDKs and versions in-between, omitted # See Wikipedia for a good, complete table # # SDK Version VERSION_CODE # --- ------- --------- # 8 2.2 FROYO # 9 2.3, 2.3.1, 2.3.2 GINGERBREAD # 11 3.0.x HONEYCOMB(3.x are weird, tablet-only versions) # 12 3.1.x HONEYCOMB_MR1 # 13 3.2 HONEYCOMB_MR2 # 14 4.0, 4.0.1, 4.0.2 ICE_CREAM_SANDWICH # 15 4.0.3, 4.0.4 ICE_CREAM_SANDWICH_MR1 # 16 4.1, 4.1.1 JELLY_BEAN # 17 4.2, 4.2.2 JELLY_BEAN_MR1 # 18 4.3 JELLY_BEAN_MR2 # 19 4.4 KITKAT # 20 4.4W KITKAT_WATCH (wearables, not supported) # 21 5.0 LOLLIPOP # 22 5.1 LOLLIPOP_MR1 # 23 6.0 Marshmallow # 24 7.0 Nougut # 25 7.1,7.1.1 Nougut MR1 # 26 8.0 Oreo # 27 8.1 Oreo MR1 # 28 9 Pie
minSDK: '23' # Note: minimum possible SDK is 14 for Rhodes 5.1 targetSDK: '28' version: '9.0'
|
|
|
Post by jontara on Jul 26, 2019 23:51:57 GMT
You might use an older targetSDK if your app cannot tolerate some change(s) of behavior in recent versions. I would try 28 first, assuming you have a device or simulator to test it with. If you set it to a lower SDK, then the OS will adapt and will treat the app as if the older version is on the device.
You can set maxSDK as well, but then that prevents installation on NEWER OS, and is a very rare need.
|
|
|
Post by Alex Epifanov on Jul 29, 2019 23:52:55 GMT
|
|
|
Post by Alex Epifanov on Jul 29, 2019 23:54:09 GMT
What Android SDK is recommended for RMS 7.1? I saw somewhere that NDK 19 is required. We recommend latest available tools, NDK 20 in particular.
|
|
|
Post by Alex Epifanov on May 19, 2020 16:06:05 GMT
RhoMobile 7.2 has been released and available for download: tau-technologies.com/developers/downloads/Most significant change is support of HTTPS and client certificate checks for local Rhodes server, which makes it impossible to capture traffic from the app, or to connect to it via external client.
|
|
|
Post by egghead on May 21, 2020 1:04:32 GMT
RhoMobile 7.2 has been released and available for download: Funny thing about this release is that whatever apps I've build successfully for Android, the apk parsing/extraction/install on device is a hit or miss affair. For example, a hello world Products app installed successfully in one device with Android 5.x, but failed to extract in Android 6.x and Android 10 device. The Tau inventory sample app installs successfully in all devices, but Kitchen Sink Ruby app doesn't install in any device... Are there any caveats I'm unaware of in this release?
|
|