Android duplicate provider authority problem

前端 未结 4 623
长情又很酷
长情又很酷 2021-01-05 07:08

We\'re trying to publish a pay ad-free version of a casual app that\'s currently published free with ads. We refactored all package names to com.mycompanyname.appname.

4条回答
  •  借酒劲吻你
    2021-01-05 07:52

    Google by default add app measurement provider in your APP so in build.gradle file you need to define applicationID under android tag exaple defaultConfig { applicationId "com.example.my.app" minSdkVersion 15 targetSdkVersion 19 versionCode 1 versionName "1.0" }

提交回复
热议问题