-1

I've used MultiDexEnable=true command in my gradle file to integrate the cometChat sdk . But Picasso library which was running fine is crashing now giving the following error. Can you please guide towards solution?

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"
    useLibrary 'org.apache.http.legacy'

    defaultConfig {
        applicationId "com.edesign.astutesol.eyesapp"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
            multiDexEnabled true

    }
    /*repositories {
        maven {
            url 'https://repo1.maven.org/maven2/'
           // url 'https://oss.sonatype.org/content/repositories/snapshots/'
        }
    }*/
    dexOptions {
        javaMaxHeapSize "4g"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'

    /*compile('org.apache.httpcomponents:httpmime:4.3.6') {
        exclude module: 'httpclient'
    }
    compile 'org.apache.httpcomponents:httpclient-android:4.3.5'*/
    /*compile 'com.loopj.android:android-async-http:1.4.9'*/
    /*compile 'com.loopj.android:android-async-http:1.4.9-SNAPSHOT'*/
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.3'
    compile 'com.mcxiaoke.volley:library:1.0.15'
    compile 'com.google.android.gms:play-services-appindexing:8.1.0'
    compile 'com.google.android.gms:play-services:8.4.0'
    compile 'com.google.code.gson:gson:2.2.+'
    compile 'com.android.support:recyclerview-v7:23.1.1'
    compile 'com.android.support:cardview-v7:23.1.1'
    compile 'com.android.support:design:23.1.1'
    compile 'com.android.support:support-v13:23.1.1'
    compile 'com.squareup.picasso:picasso:2.5.2'
    compile 'com.astuetz:pagerslidingtabstrip:1.0.1'
    compile 'de.hdodenhof:circleimageview:2.0.0'
}

Log Cat

Process: com.edesign.astutesol.eyesapp, PID: 29018 java.lang.NoClassDefFoundError: com.squareup.picasso.Picasso$1
                                                                               at com.squareup.picasso.Picasso.<clinit>(Picasso.java:109)
                                                                               at com.edesign.astutesol.eyesapp.BaseFragmentActivity.SetDrawer(BaseFragmentActivity.java:81)
                                                                               at com.edesign.astutesol.eyesapp.BaseFragmentActivity.onCreate(BaseFragmentActivity.java:65)
                                                                               at com.edesign.astutesol.eyesapp.MapsActivity.onCreate(MapsActivity.java:152)
                                                                               at android.app.Activity.performCreate(Activity.java:5541)
                                                                               at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1093)
                                                                               at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2368)
                                                                               at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2464)
                                                                               at android.app.ActivityThread.access$900(ActivityThread.java:172)
                                                                               at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1308)
                                                                               at android.os.Handler.dispatchMessage(Handler.java:102)
                                                                               at android.os.Looper.loop(Looper.java:146)
                                                                               at android.app.ActivityThread.main(ActivityThread.java:5653)
                                                                               at java.lang.reflect.Method.invokeNative(Native Method)
                                                                               at java.lang.reflect.Method.invoke(Method.java:515)
                                                                               at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1291)
                                                                               at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1107)
                                                                               at dalvik.system.NativeStart.main(Native Method)
user1140237
  • 5,015
  • 1
  • 28
  • 56
Usman Ishrat
  • 147
  • 1
  • 7
  • 1
    obviously, as it is stated in the documentation, you need to setup context for multidex... which you prolly didn't (but it is hard to say it without code) – Selvin Feb 22 '16 at 10:55
  • @usman have you tried this answers ? >> http://stackoverflow.com/a/34948154/1140237 in this Suggesion part may work for you in easy way .. for more details you can check this answer to http://stackoverflow.com/a/34960885/1140237 – user1140237 Feb 22 '16 at 11:21
  • Thanks for your reply, but I'm unable to find the exact answer from your links. Can you please guide? – Usman Ishrat Feb 22 '16 at 11:29
  • @UsmanIshrat check the answer and let me know if anything – user1140237 Feb 22 '16 at 12:03

2 Answers2

6

make your application class like bellow

public class MyAppClass extends MultiDexApplication{
@Override
    protected void attachBaseContext(Context newBase) {
        MultiDex.install(newBase);
        super.attachBaseContext(newBase);
    }
}

add this library in your dependencies

dependencies {
     compile 'com.android.support:multidex:1.0.1'
    //    your dependencies which you are using.

}
Bajirao Shinde
  • 1,356
  • 1
  • 18
  • 26
2

You need to handle Multiple dex file after enabling that option from build.gradle

& if in your project are you using Application class than extend it by with MultiDexApplication & handle multiple dex file in attachBaseContext

To install MultiDex.install i refer android developer link

Eg.

public class MyAppClass extends MultiDexApplication{
@Override
    protected void attachBaseContext(Context newBase) {
        MultiDex.install(newBase);
        super.attachBaseContext(newBase);
    }
}

Declare MyAppClass in your AndroidManfiest file application name.

<application
        android:name="MyAppClass"
android:icon="@drawable/ic_launcher"
        android:label="@string/app_name">
//... your other manifest declaration
</application>

Updated gradle

 apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"
    useLibrary 'org.apache.http.legacy'

    defaultConfig {
        applicationId "com.edesign.astutesol.eyesapp"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
        multiDexEnabled true

    }
    /*repositories {
        maven {
            url 'https://repo1.maven.org/maven2/'
           // url 'https://oss.sonatype.org/content/repositories/snapshots/'
        }
    }*/
    dexOptions {
          jumboMode = true
        incremental true
        // here heap size give 4g i got this thing from https://groups.google.com/forum/#!topic/adt-dev/P_TLBTyFWVY

        javaMaxHeapSize "4g"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:multidex:1.0.1'
    //your dependencies which you are using.
    /*compile('org.apache.httpcomponents:httpmime:4.3.6') {
        exclude module: 'httpclient'
    }
    compile 'org.apache.httpcomponents:httpclient-android:4.3.5'*/
    /*compile 'com.loopj.android:android-async-http:1.4.9'*/
    /*compile 'com.loopj.android:android-async-http:1.4.9-SNAPSHOT'*/
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.3'
    compile 'com.mcxiaoke.volley:library:1.0.15'
    compile 'com.google.android.gms:play-services-appindexing:8.1.0'
    compile 'com.google.android.gms:play-services:8.4.0'
    compile 'com.google.code.gson:gson:2.2.+'
    compile 'com.android.support:recyclerview-v7:23.1.1'
    compile 'com.android.support:cardview-v7:23.1.1'
    compile 'com.android.support:design:23.1.1'
    compile 'com.android.support:support-v13:23.1.1'
    compile 'com.squareup.picasso:picasso:2.5.2'
    compile 'com.astuetz:pagerslidingtabstrip:1.0.1'
    compile 'de.hdodenhof:circleimageview:2.0.0'
}

Suggestion

Use only required play service library do not add entire Group of play service . Refer this link. it will reduce the number of method count & unused library too.

Example

compile 'com.google.android.gms:play-services:8.4.0'

with these lines(add artifactId (group) according to the required feature like play-services-fitness play-services-wearable etc):

compile 'com.google.android.gms:play-services-fitness:8.4.0'
compile 'com.google.android.gms:play-services-wearable:8.4.0'

with reference of my answer for other questions

Community
  • 1
  • 1
user1140237
  • 5,015
  • 1
  • 28
  • 56