Merry-August

Results 2 comments of Merry-August

问题已解决。在build.gradle中改为使用Small 1.5.0-beta2版本,并且将gradle tool版本改为2.3.0 dependencies { classpath 'com.android.tools.build:gradle:2.3.0' classpath 'net.wequick.tools.build:gradle-small:1.5.0-beta2' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files }

我也遇到這個問題,然後使用在build.gradle上引用1.5.0版本的Small后就解決了。 在build.gradle: buildscript { dependencies { classpath 'net.wequick.tools.build:gradle-small:1.5.0-beta2' } } apply plugin: 'net.wequick.small' small { aarVersion = '1.5.0-beta2' } 具體可參考這個:https://github.com/wequick/Small/tree/master/Android