Tommy Visic

Results 3 comments of Tommy Visic

I'm using both together without a problem. I don't believe I had to make any changes either. Have you confirmed that IG JSON Parser is working properly on its own?

I think you need to put IG parser in its own module. Now that I think about it, I did run into an issue w/ the java gradle plugin causing...

settings.gradle ``` include ':tastemade' include ':tastemade:jsonModels' ``` app module build.gradle ``` apply plugin: 'android' android { ... } dependencies { compile 'com.jakewharton:butterknife:5.1.2' compile project(':tastemade:jsonModels') ... } ``` jsonModels module build.gradle...