Getting exception : java.lang.NoClassDefFoundError: android.support.v7.app.AppCompatDelegateImplV14

被刻印的时光 ゝ 提交于 2019-11-27 15:39:31

I resolved this issue and if anyone is experiencing this issue try these options(3rd point fixed my problem):

  1. Add multiDexEnabled true in defaultConfig of build.gradle.

    defaultConfig { applicationId "com.something.ranjith.androidprojdel" minSdkVersion 15 targetSdkVersion 22 versionCode 1 versionName "1.0" multiDexEnabled true }

  2. Remove android support library if your activity extends `AppcompatActivity'

    compile 'com.android.support:support-v4:22.+' //remove this

  3. If you have PlayServices in your app then remove the PlayServices and add the individual APIs. For eg:- if you are using PlayServices for ads then just add compile com.google.android.gms:play-services-ads:7.5.0 instead of compile com.google.android.gms:play-services:7.5.0

List of individual APIs of PlayServices:

  • Google+ com.google.android.gms:play-services-plus:7.5.0
  • Google Account Login com.google.android.gms:play-services-identity:7.5.0
  • Google Actions, Base Client Library com.google.android.gms:play-services-base:7.5.0
  • Google App Indexing com.google.android.gms:play-services-appindexing:7.5.0
  • Google App Invites com.google.android.gms:play-services-appinvite:7.5.0
  • Google Analytics com.google.android.gms:play-services-analytics:7.5.0
  • Google Cast com.google.android.gms:play-services-cast:7.5.0
  • Google Cloud Messaging com.google.android.gms:play-services-gcm:7.5.0
  • Google Drive com.google.android.gms:play-services-drive:7.5.0
  • Google Fit com.google.android.gms:play-services-fitness:7.5.0
  • Google Location, Activity Recognition, and Places
    com.google.android.gms:play-services-location:7.5.0
  • Google Maps com.google.android.gms:play-services-maps:7.5.0
  • Mobile Ads com.google.android.gms:play-services-ads:7.5.0
  • Google Nearby com.google.android.gms:play-services-nearby:7.5.0
  • Google Panorama Viewer `com.google.android.gms:play-services-panorama:7.5.0
  • Google Play Game services com.google.android.gms:play-services-games:7.5.0
  • SafetyNet com.google.android.gms:play-services-safetynet:7.5.0
  • Google Wallet com.google.android.gms:play-services-wallet:7.5.0
  • Android Wear com.google.android.gms:play-services-wearable:7.5.0
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!