INSTALL_FAILED_CONFLICTING_PROVIDER in Android

前端 未结 10 456
广开言路
广开言路 2021-01-01 15:08

I am using an open-srouce code from Google for an app called MyTracks.

I am getting this error when the original app is installed on the phone.

INSTA         


        
10条回答
  •  走了就别回头了
    2021-01-01 15:58

    You maybe compile same library or including libraries. For example :

    compile 'com.google.android.gms:play-services:8.1.0'
    compile 'com.google.android.gms:play-services-ads:8.1.0'
    compile 'com.google.android.gms:play-services-identity:8.1.0'
    compile 'com.google.android.gms:play-services-gcm:8.1.0'
    

    Above code, google play services (first line ) includes all other services .

提交回复
热议问题