Android sdk - How to support different OS version devices

gopal_apprik

New Member
Hi,

Required minsdkversion for Android SDK 1.1 - EN is 26. As per doc, Android SDK 1.0 - EN will support below 26. But in Android SDK 1.0 - EN, screen sharing feature is not available. Then how to support below Android OS sdk version 26 with Screen sharing feature. Also let us know, how to support different OS devices with Single APK, because as per doc, it's mentioning will have to share to different APKs to support different OS version devices.

Awaiting your guidance. Thank you in advance.
 

Max

Administrator
Staff member
Good day.
Required minsdkversion for Android SDK 1.1 - EN is 26. As per doc, Android SDK 1.0 - EN will support below 26. But in Android SDK 1.0 - EN, screen sharing feature is not available. Then how to support below Android OS sdk version 26 with Screen sharing feature.
Android SDK 1.1 has a newer WebRTC library version integrated which supports screen capturing. But this library requires API 26 and higher. So you cannot use screen sharing feature in earlier Android versions.
Also let us know, how to support different OS devices with Single APK, because as per doc, it's mentioning will have to share to different APKs to support different OS version devices.
You cannot support different API levels in a single APK, but you can use multiple APK support provided by Google Play.
 
Top