ActivityNotFoundException: Unable to find explicit activity class {com.example.prod/com.zipow.videobox.JoinByURLActivity};

ActivityNotFoundException: Unable to find explicit activity class {com.example.prod/com.zipow.videobox.JoinByURLActivity};
getting this error while integrating android SDK in application.

SDK initializes properly.

Found one solution on devforum for this issue i.e. set compile version 29 but it does not work for me.

Also tried with cleaning the project and rebuilding it.
Also done with reintegrating it.

I am sharing my build.gradle fine

build.gradle(module:app)

apply plugin: 'com.android.application'

repositories {
    mavenCentral()
    maven {
        url "https://s3-ap-southeast-1.amazonaws.com/godel-release/godel/"
    }

    maven {
        url "https://maven.google.com"
    }
}

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.2"
    useLibrary 'org.apache.http.legacy'
    defaultConfig {
        applicationId "com.example.prod"
        minSdkVersion 21
        targetSdkVersion 28
        versionCode 20
        versionName "20.0"
        vectorDrawables.useSupportLibrary = true
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    lintOptions {
        checkReleaseBuilds false
        // Or, if you prefer, you can continue to check for errors in release builds,
        // but continue the build even when errors are found:
        abortOnError false
    }
    buildTypes {
        debug {
            debuggable true
            minifyEnabled false
//            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
        release {
            minifyEnabled false
  //          proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    configurations.all {
        resolutionStrategy.force "androidx.appcompat:appcompat:1.0.0"
        resolutionStrategy.force "androidx.legacy:legacy-support-v4:1.0.0"
        resolutionStrategy.force "androidx.lifecycle:runtime:2.1.0"
    }

    sourceSets {
        main {
            assets.srcDirs = ['src/main/assets', 'src/main/assets/']
        }
    }
}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    // RecyclerView
    // Glide
//    compile files('libs/activation.jar')

    implementation 'androidx.core:core:1.0.0'
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.recyclerview:recyclerview:1.0.0'
    implementation 'androidx.cardview:cardview:1.0.0'
    implementation 'com.google.android.material:material:1.0.0'
    implementation 'com.github.bumptech.glide:glide:3.7.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'de.hdodenhof:circleimageview:1.2.1'
    testImplementation 'junit:junit:4.12'
    implementation 'com.google.firebase:firebase-core:16.0.4'
    implementation 'com.google.firebase:firebase-messaging:17.3.4'
    implementation 'com.google.firebase:firebase-invites:16.0.4'
    implementation 'de.hdodenhof:circleimageview:3.0.0'
    implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.+'
    implementation 'com.android.volley:volley:1.1.1'
    implementation project(':library')

    implementation 'org.sufficientlysecure:html-textview:3.2'
//instamojo
    implementation 'ai.devsupport.instamojo:instamojolib:0.1.5'

    //zoomsdk
    implementation project(':commonlib')
    implementation project(':mobilertc')
    implementation 'androidx.multidex:multidex:2.0.0'

}

apply plugin: 'com.google.gms.google-services'

build.gradle(project)

buildscript {
    repositories {
        jcenter()
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.6.1'
        classpath 'com.google.gms:google-services:4.3.3'
    }
}

allprojects {
    repositories {
        google()
        jcenter()
       
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

version
v5.0.24437.0708

Smartphone

  • Nokia 5.1 plus [Android 10]

Please help me… its urgent…
Thank you in advance…

Hi @ehiddenbrain,

Thanks for the post. We have followed the configurations you have here with our demo app and we did not encounter any issues. Would you mind providing a demo apk that has this issue for us to further investigate this issue?

Thanks!