com.android.build.transform.api.TransformException

后端 未结 25 2316
独厮守ぢ
独厮守ぢ 2020-11-22 06:14

I am trying to integrate Google sign in, in my app, I added these libraries:

compile \'com.google.android.gms:play-services-identity:8.1.0\'
compile \'com.go         


        
25条回答
  •  时光取名叫无心
    2020-11-22 06:47

    I solved this issue by adding: In build.gradle:

    defaultConfig {
        multiDexEnabled true
    }
    

    in local.properties ,

    org.gradle.jvmargs=-XX\:MaxHeapSize\=512m -Xmx512m
    

    mention dependency:

    compile 'com.android.support:multidex:1.0.1'
    

    Clean and Rebuild.

提交回复
热议问题