Skip to content

Commit

Permalink
fix compile issues
Browse files Browse the repository at this point in the history
  • Loading branch information
f43nd1r committed Feb 1, 2018
1 parent debe9e7 commit 6d33cf6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions acra-notification/build.gradle
Expand Up @@ -20,6 +20,7 @@ apply plugin: 'com.jfrog.bintray'

dependencies {
api project(':acra-core')
implementation "com.android.support:support-compat:$supportVersion"
compileOnly "com.google.auto.service:auto-service:$autoServiceVersion"
annotationProcessor project(':annotationprocessor')
compileOnly project(':annotations')
Expand Down
Expand Up @@ -79,7 +79,7 @@ public void createClasses() throws IOException {
try {
baseBuilder = processingEnv.getElementUtils().getTypeElement(configuration.baseBuilderClass().getName());
} catch (MirroredTypeException e) {
baseBuilder = MoreTypes.asTypeElement(processingEnv.getTypeUtils(), e.getTypeMirror());
baseBuilder = MoreTypes.asTypeElement(e.getTypeMirror());
}
final List<Element> elements = new ModelBuilder(baseAnnotation, new ElementFactory(processingEnv.getElementUtils()), baseBuilder, processingEnv.getMessager()).build();
createBuilderClass(elements);
Expand Down
Empty file modified gradlew 100644 → 100755
Empty file.

0 comments on commit 6d33cf6

Please sign in to comment.