Android 9.0 APP Install Android 4.4 Error: classnotfoundexception

App on Android 9.0 can run, but the installation to version 4.4 program crashes, the error isClassNotFoundException,
java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.xx.app/com.xx.view.splash.SplashActivity}: java.lang.ClassNotFoundException: Didn’t find class “com.xx.view.splash.SplashActivity” on path: DexPathList[[zip file “/data/app/com.xx.app-1.apk”],nativeLibraryDirectories=[/data/app-lib/com.xx.app-1, /vendor/lib, /system/lib]]
Stack.
E/AndroidRuntime( 9741):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2121)
E/AndroidRuntime( 9741):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2245)
E/AndroidRuntime( 9741):     at android.app.ActivityThread.access$800(ActivityThread.java:135)
E/AndroidRuntime( 9741):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1196)
E/AndroidRuntime( 9741):     at android.os.Handler.dispatchMessage(Handler.java:102)
E/AndroidRuntime( 9741):     at android.os.Looper.loop(Looper.java:136)
E/AndroidRuntime( 9741):     at android.app.ActivityThread.main(ActivityThread.java:5047)
E/AndroidRuntime( 9741):     at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 9741):     at java.lang.reflect.Method.invoke(Method.java:515)
E/AndroidRuntime( 9741):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:842)
E/AndroidRuntime( 9741):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:658)
E/AndroidRuntime( 9741):     at dalvik.system.NativeStart.main(Native Method)

Solution:
Change the version of androidx.constraintlayout:constraintlayout from 2.0.4 to 2.1.1, the problem is solved

Read More: