Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Use Android SDK to develop mobile applications for streaming video and calls.

Download WCS Android SDK as .aar file
http://flashphoner.com/downloads/builds/flashphoner_client/wcs-android-sdk/aarDownload full WCS Android SDK build including examples and API documentation
httphttps://docs.flashphoner.com/downloadsdisplay/builds/flashphoner_client/wcs-android-sdkANDROIDSDK1EN/Android+SDK+release+notes

Read API documentation online
http://flashphoner.com/docs/api/WCS5/client/android-sdk/latest

...

In Android SDK 1.1 WebRTC library libjingle_peerconnection.jar is updated to actual version. So Android SDK 1.1 requires Android API 2826, i.e. application build with Android SDK 1.1 will run on Android 8 and higher. Use Android SDK 1.0 to support previous Android versions.

When publishing in Google Play, two APKs can be deployed - one for each of the Android SDK versions - for compatibility with devices with API lower and higher than 26.

Preparing examples for building

...

Code Block
languagebash
themeRDark
wget http://flashphoner.com/downloads/builds/flashphoner_client/wcs-android-sdk/aar1.0/wcs-android-sdk-1.0.1.2x.aar
cp wcs-android-sdk-1.0.1.2x.aar export

3. Open the 'export' folder and execute the export.sh script that will prepare configs for further building. The result is placed into the 'output' folder.

Code Block
languagebash
themeRDark
cd export
./export.sh wcs-android-sdk-1.0.1.2x.aar
Warning
This step is very important because application examples source code is the same for different versions of Android SDK. export.sh script automatically sets miniman required Android API version for building examples depending on Android SDK version

...