aartikov / Alligator

Alligator is Android navigation library that will help to organize your navigation code in clean and testable way.
MIT License
298 stars 17 forks source link

Cannot generate Class #22

Closed mathemandy closed 6 years ago

mathemandy commented 6 years ago
screen shot 2018-10-31 at 7 10 42 pm

Please assist me as the expected generated class is not generating. I have annnotated all the fragments and activities with The @Register annotation :( @aartikov Thanks

mathemandy commented 6 years ago

i solved the issue. I use kotlin in my Project and i was not able to generate the code. Replacing dependencies { compile 'com.github.aartikov.Alligator:alligator:2.2.0' annotationProcessor 'com.github.aartikov.Alligator:alligator-compiler:2.2.0' } with dependencies { compile 'com.github.aartikov.Alligator:alligator:2.2.0' kapt 'com.github.aartikov.Alligator:alligator-compiler:2.2.0' }

solved the issue