如何在不支持 Androidx 的情况下更新旧项目中的 opentok 最新版本?这可能吗?

How to an update opentok latest version in old projects without support Androidx?Is it possible?

我正在使用 opentok 版本 compile 'com.opentok.android:opentok-android-sdk:2.13.0',我想升级到 compile 'com.opentok.android:opentok-android-sdk:2.16.1' 但据说有必要将整个项目转换为 AndroidX.Does 可能不支持 AndroidX 请帮助我对此。 提前致谢

OpenTok 2.16.1 不要求您的项目构建时支持 AndroidX。

您需要做的是通过将此添加到您的项目来使用 Java8:

android {
  ...
  compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
  }