23

谷歌已经正式发布了 Jack & Jill,正如他们博客中提到的那样。

但是,如果我使用以下属性:

defaultConfig {
    applicationId 'xxx'
    minSdkVersion 10
    targetSdkVersion 19
    versionCode 162
    versionName 'xxx'
    // Enabling multidex support.
    multiDexEnabled true
    testInstrumentationRunner "android.support.multidex.MultiDexTestRunner"
    manifestPlaceholders = [ cappId:"xxx",cappLog:"false" ]
    useJack = true
}

我收到以下错误

Error:Cannot get property 'destinationDir' on null object

如果我评论使用 Jack 属性,我没有问题

我知道这是一个实验性工具,但你知道我该如何解决吗?

4

1 回答 1

-3

你在使用 retro-lambda、dagger2 或任何其他注释处理库吗?在这种情况下,您需要手动指定处理器。

看到这个线程:https ://github.com/evant/gradle-retrolambda/issues/71

于 2016-06-14T08:20:34.583 回答