File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed
src/main/java/com/quarkworks/android/realmtypesafequery Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 11apply plugin : ' java'
2+ apply plugin : ' com.github.dcendents.android-maven' // jitpack.io
3+
4+ group= ' com.github.quarkworks' // jitpack.io
25
36dependencies {
47 compile fileTree(dir : ' libs' , include : [' *.jar' ])
@@ -9,4 +12,4 @@ dependencies {
912}
1013
1114sourceCompatibility = 1.7
12- targetCompatibility = 1.7
15+ targetCompatibility = 1.7
Original file line number Diff line number Diff line change 1616
1717import javax .annotation .processing .AbstractProcessor ;
1818import javax .annotation .processing .RoundEnvironment ;
19+ import javax .annotation .processing .SupportedSourceVersion ;
20+ import javax .lang .model .SourceVersion ;
1921import javax .lang .model .element .Element ;
2022import javax .lang .model .element .Modifier ;
2123import javax .lang .model .element .TypeElement ;
2628import io .realm .annotations .Ignore ;
2729
2830//@AutoService(Processor.class) this causes some compiler error so we are now doing this by hand
31+ @ SupportedSourceVersion (SourceVersion .RELEASE_7 )
2932public class AnnotationProcessor extends AbstractProcessor {
3033
3134 @ Override
Original file line number Diff line number Diff line change 11apply plugin : ' java'
2+ apply plugin : ' com.github.dcendents.android-maven' // jitpack.io
3+
4+ group= ' com.github.quarkworks' // jitpack.io
25
36dependencies {
47 compile fileTree(dir : ' libs' , include : [' *.jar' ])
You can’t perform that action at this time.
0 commit comments