Skip to content

Instantly share code, notes, and snippets.

@koral--
Last active December 12, 2017 01:31
  • Star 5 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save koral--/f99d64c72741c29431ce4e15c0e5b6d7 to your computer and use it in GitHub Desktop.
testApt to testAnnotationProcessor migration, workaround for issue: https://code.google.com/p/android/issues/detail?id=224272
android.applicationVariants.all {
def aptOutputDir = new File(buildDir, "generated/source/apt/${it.unitTestVariant.dirName}")
it.unitTestVariant.addJavaSourceFoldersToModel(aptOutputDir)
}
@TreeFrogApps
Copy link

Also marked as resolved, this is still an issue as of: gradle:2.2.2 & gradle:2.3.0-alpha2

@itsymbal
Copy link

itsymbal commented Mar 7, 2017

For Library modules, the config is

android {
defaultConfig {
      android.libraryVariants.all {
            def aptOutputDir = new File(buildDir, "generated/source/apt/${it.unitTestVariant.dirName}")
            it.unitTestVariant.addJavaSourceFoldersToModel(aptOutputDir)
        }
}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment