AS 多渠道打包 generateADebugSources

Error:FAILURE: Build failed with an exception.


* What went wrong:
Task 'generateADebugSources' not found in project ':app'. Some candidates are: 'generateUcDebugSources'.


* Try:

Run gradle tasks to get a list of available tasks. Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.


这是我在多渠道打包的时候出现的问题

在网上找了半天 ,也没有找到相关的错误信息


多渠道打包配置如下

http://bbs.umeng.com/thread-9119-1-1.html(感谢分享)


不过我只使用了  这两个部分,关于命令行没有使用(代码修改的地方连接里面都有)


productFlavors {
  
wandoujia {}
baidu {}
c360 {}
uc {}
  
productFlavors.all { flavor ->
flavor.manifestPlaceholders = [UMENG_CHANNEL_VALUE: name]
}
  
}

运行但是会出现这个错误 

Error:FAILURE: Build failed with an exception.


* What went wrong:
Task 'generateADebugSources' not found in project ':app'. Some candidates are: 'generateUcDebugSources'.


* Try:

Run gradle tasks to get a list of available tasks. Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.



提示enerateUcDebugSources,在编译第一个UC版本的时候就不行了

网上找了半天,后来发现配置一下buildToolsVersion  设置到最新版本

就可以编译成功了,OK    搞定


第一次写博客,  以后要坚持写   希望自己踩过的坑,能够帮到别人,也是帮助自己成长吧

你可能感兴趣的:(AS 多渠道打包 generateADebugSources)