Unsupported class: com.mediatek.common.telephony.IOnlyOwnerSimSupport

After updating the dependencies, I got app not responding after starting and I got this error in logcat

E / MPlugin: Unsupported class: com.mediatek.common.telephony.IOnlyOwnerSimSupport E / MediaPlayer: Must have a subtitle controller already installed

My dependencies:

 dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:25.2.0' compile 'com.google.android.gms:play-services:10.2.0' compile 'com.mcxiaoke.volley:library:1.0.19' compile 'com.android.support:multidex:1.0.1' compile "com.android.support:support-v4:25.2.0" compile 'com.android.support:design:25.2.0' compile 'com.google.maps:google-maps-services:0.1.17' compile 'pl.droidsonroids.gif:android-gif-drawable:1.1.6' } 
+6
source share
1 answer

I had the same problem, but it disappeared after installing google play service from Android tools.

So, you need to clean and rebuild the project again to install this service, or just download it from Android studio using the Android SDK Manager on the "Tools" tab.

+5
source

Source: https://habr.com/ru/post/1015568/


All Articles