# Missing libzoom\_stlport.so when using emulator

**URL:** https://devforum.zoom.us/t/missing-libzoom-stlport-so-when-using-emulator/5646
**Category:** Android
**Created:** [August 22, 2019, 4:20pm UTC](https://devforum.zoom.us/t/missing-libzoom-stlport-so-when-using-emulator/5646 "2019-08-22T16:20:14Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![grey-bit](https://avatars.discourse-cdn.com/v4/letter/g/958977/32.png) [@grey-bit](https://devforum.zoom.us/u/grey-bit)
#### Post date: [August 22, 2019, 4:20pm UTC](https://devforum.zoom.us/t/missing-libzoom-stlport-so-when-using-emulator/5646/1 "2019-08-22T16:20:14Z")

</div>

My app runs just fine on actual Pixel 3.  
When I try using emulator, I get an exception "couldn’t find “libzoom\_stlport.so”

In the project build.gradle I have:  
ndk {  
abiFilters ‘armeabi-v7a’, “x86”  
}

Does Zoom Android SDK support x86 emulator?

---

<div class="post-metadata">

### Author: ![carson.zoom](https://sea2.discourse-cdn.com/flex016/user_avatar/devforum.zoom.us/carson.zoom/32/785_2.png) [@carson.zoom](https://devforum.zoom.us/u/carson.zoom)
#### Post date: [August 22, 2019, 10:19pm UTC](https://devforum.zoom.us/t/missing-libzoom-stlport-so-when-using-emulator/5646/2 "2019-08-22T22:19:55Z")

</div>

Hi grey-bit,

Thanks for the post. May I inquire what is the SDK version number that you are using? I tried to use the latest SDK: [https://github.com/zoom/zoom-sdk-android/releases/tag/v4.4.55130.0712](https://github.com/zoom/zoom-sdk-android/releases/tag/v4.4.55130.0712) and run the demo app with x86 emulator, and I did not encounter with any issues.

Here are the emulators that I have:

 ![58%20PM](https://us1.discourse-cdn.com/flex016/uploads/zoomdeveloper/original/2X/d/dac0eae2264fd7df56b67c48334504ba199ced2f.png)  
Here are the running screenshots:  
 ![50%20PM](https://us1.discourse-cdn.com/flex016/uploads/zoomdeveloper/original/2X/c/c1e005b7d030158d49af7f08eb1986f103778737.png)  
 ![46%20PM](https://us1.discourse-cdn.com/flex016/uploads/zoomdeveloper/original/2X/b/b36db9b62053b4ab2a0aeb0c1c9e638e2f5b627e.png)

And here is the gradle setting:

```auto
android {
    compileSdkVersion 28
    buildToolsVersion '28.0.3'

    defaultConfig {
        applicationId "us.zoom.sdkexample"
        minSdkVersion 16
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        multiDexEnabled true

// ndk {
// abiFilters "arm64-v8a"
// }
        ndk {
            abiFilters "armeabi-v7a", "x86"
        }
    }

    buildTypes {
        release {
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard.cfg'
        }

        debug {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard.cfg'
        }

    }

    lintOptions {
        checkReleaseBuilds false
        abortOnError false
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_7
        targetCompatibility JavaVersion.VERSION_1_7
    }
}

dependencies {
    implementation 'androidx.multidex:multidex:2.0.0'
    implementation 'androidx.recyclerview:recyclerview:1.0.0'
    implementation 'androidx.appcompat:appcompat:1.0.0'
    implementation project(':commonlib')
    implementation project(':mobilertc')
}

```

Hope my info helps. If you are still facing the same issue with the latest version of SDK, could you provide more information on it so that we can further help you?

Thanks!

---

<div class="post-metadata">

### Author: ![grey-bit](https://avatars.discourse-cdn.com/v4/letter/g/958977/32.png) [@grey-bit](https://devforum.zoom.us/u/grey-bit)
#### Post date: [August 23, 2019, 12:04am UTC](https://devforum.zoom.us/t/missing-libzoom-stlport-so-when-using-emulator/5646/3 "2019-08-23T00:04:28Z")

</div>

Indeed, I am using older SDK.  
Now that I upgraded to the latest, I get the following exception when running on the actual phone:  
**Rejecting re-init on previously-failed class java.lang.Class\<us.zoom.androidlib.app.ZMActivity\>: java.lang.NoClassDefFoundError: Failed resolution of: Landroidx/fragment/app/FragmentActivity;  
at com.zipow.videobox.ptapp.PTUI com.zipow.videobox.ptapp.PTUI.getInstance() (PTUI.java:-1)  
at void us.zoom.sdk.ZoomSDK.() (ZoomSDK.java:156)  
at us.zoom.sdk.ZoomSDK us.zoom.sdk.ZoomSDK.getInstance() (ZoomSDK.java:168)**

Does Zoom SDK now require AndroidX? Refactoring to AndroidX requires SDK28, which would be quite high as a requirement for my app.

---

<div class="post-metadata">

### Author: ![carson.zoom](https://sea2.discourse-cdn.com/flex016/user_avatar/devforum.zoom.us/carson.zoom/32/785_2.png) [@carson.zoom](https://devforum.zoom.us/u/carson.zoom)
#### Post date: [August 23, 2019, 12:07am UTC](https://devforum.zoom.us/t/missing-libzoom-stlport-so-when-using-emulator/5646/4 "2019-08-23T00:07:16Z")

</div>

Hi grey-bit,

Thanks for the reply. Yes, the latest Zoom SDK requires AndroidX([https://github.com/zoom/zoom-sdk-android#frequently-asked-questions-faq](https://github.com/zoom/zoom-sdk-android#frequently-asked-questions-faq)). I understand your concern. I will consult our engineering team to see if there is any workaround for this(Not upgrading to AndroidX). I will get back to you asap.

Thanks!

---

<div class="post-metadata">

### Author: ![DeveloperBot](https://sea2.discourse-cdn.com/flex016/user_avatar/devforum.zoom.us/developerbot/32/12632_2.png) [@DeveloperBot](https://devforum.zoom.us/u/DeveloperBot)
#### Post date: [August 21, 2020, 6:40pm UTC](https://devforum.zoom.us/t/missing-libzoom-stlport-so-when-using-emulator/5646/5 "2020-08-21T18:40:03Z")

</div>


