I can not find the Expo support for Android SDKs. Android 4.4 is no longer supported since Expo SDK v31.0.0 version Here. Since Expo v31 now is 6.0
Where can i find more information about Android SDK support?
You can see it in the docs:
The minimum supported OS versions are Android 5+ and iOS 10+
If you need to support older versions, you will not be able to use the managed workflow.
Android 5.0 is Lollipop, API 21.
Related
I'd like to update my app from old expo 22 to current 36.
which minimal android and ios versions for expo sdk 22 and 36?
or is there difference in minimal version to run app builded with expo 22 and 36 on android/ios?
As far as I'm aware all versions of the Expo SDK support Android 4.4 and greater (Android SDK 20 and greater). There is no need to set minimum Android SDK. If you want more control over the metadata you need to eject from expo and use ExpoKit.
Upgrading expo SDK walkthrough
Will react native support at least version 15 of the SDK? If not, how can I use react native apps on Android 4.0?
My app users may use old phones for now (health & medicine).
React Native supports API 16 and newer. If you need API 15 you can't use React Native.
Supported operating systems are >= Android 4.1 (API 16) and >= iOS 7.0.
https://github.com/facebook/react-native/blob/master/README.md
Only about 4.3% of android users are on devices running 4.0.x or older.
https://developer.android.com/about/dashboards/index.html
I have a doubt with the Android SDK setting in the menu for distribute an Android App in Titanium.
What Android SDK Version means?
The minimum SDK Version?
Or
I must create an APK for each Android
Version?
If choose Android 4.3 [x86] the resultimg APK will work for the older android devices like 2.3.3 too?
And viceversa?
The min sdk tells which would be the oldest version of android that it supports means if we give minSdk version 2.3.3 then it should work for all above and specific versions
Thanks
I've recently received an alert in developer.facebook.com for my Android app built using Trigger.io Forge:
Please upgrade to the Facebook SDK 3.0.1 for Android
attentionThursday
This app uses an outdated version of the Facebook SDK for Android. Please download the latest version: Android SDK 3.0.1. You can also learn how the newest SDK makes it easier and faster to build great mobile apps.
We also provide an upgrade guide to make this process as easy as possible.
Facebook will stop supporting v2.0 of the SDK in June 2013, so you are advised to upgrade to the new SDK as soon as possible.
I'm using the latest forge platform version 1.4.38.
What version of the FB SDK is Trigger.io using, and what is the schedule for updating to 3.0.1?
We updated our integration to the latest Facebook Android SDK (3.0.1 at this time) in our v1.4.41 platform version:
http://docs.trigger.io/en/v1.4/release-notes.html#v1-4-41
What's the minimum version of an android app taking advantage of the latest android facebook sdk 3.0 ?
I'm reading this in the facebook sdk source manifest: <uses-sdk android:minSdkVersion="8" />.
Can it be as low as SDK_INT=4 if we're using the android-support-v4.jar library ? Or will the facebook library make our apps impossible to use on versions lower than sdkint=8 ?
i tried using with (api 4), the facebook 3.0 sdk does not work and crashes with it. Went to the next highest (android 2.1 api 7) and that worked....