takimafr / androidkickstartr

AndroidKickstartR helps you to quickly create a well configured Android application using the most popular libraries. It creates and configures your project for you. Just focus on code!
http://androidkickstartr.com
Other
608 stars 116 forks source link

@AfterViews isn't working for some reason #21

Closed jeserkin closed 12 years ago

jeserkin commented 12 years ago

Hello!

I've tried this project at home and it works as I expect after some tweaking, but when I tried same way at work I can't seem to get @AfterViews to work. Compiled project just starts on the emulator with style I specified in AndroidManifest.xml, but this is it. It doesn't even add hello message.

App and project

a-thomas commented 12 years ago

Hi @jeserkin, what kind of tweaking did you do ? :)

Did you modify the main activity name in the AndroidManifest by removing the _ or referencing another activity ?

This _ is needed when you're using AndroidAnnotations. That's well explained here.

jeserkin commented 12 years ago

That was probably the issue. Everyhting works fine now. Thank you.