wupeng88
为了测试微信分享,微信分享必须有签名信息才能成功调用微信,所以需要debug 下设置签名,方便调试
build.gradle里,配置2个签名: signingConfigs { release { keyAlias \'xxx\' keyPassword \'xxx\' storeFile file(\'../xxx.keystore\') storePassword \'xxx\' } debug { keyAlias \'androiddebugkey\' keyPassword \'android\' storeFile file(\'./xxx.keystore\') storePassword \'android\' } buildTypes { debug { signingConfig signingConfigs.release } release { signingConfig signingConfigs.release } }

  

分类:

技术点:

相关文章:

  • 2021-11-23
  • 2021-11-18
  • 2021-04-24
  • 2021-11-03
  • 2021-08-05
  • 2021-08-27
  • 2021-11-17
  • 2021-08-20
猜你喜欢
  • 2021-09-23
  • 2021-11-10
  • 2021-03-31
  • 2021-10-17
  • 2022-01-11
  • 2021-09-16
  • 2021-10-08
  • 2021-12-28
相关资源
相似解决方案