I finally got my project building in Android Studio with gradle. When I debug my project breakpoints in the "application" module work, but breakpoints inside of the "library" module do not. The strange thing is that if I run the project and then attach the debugger after the application has started everything works as it should. Is this a bug or do I have something configured wrong?
--
You received this message because you are subscribed to the Google Groups "adt-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to adt-dev+u...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
You received this message because you are subscribed to a topic in the Google Groups "adt-dev" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/adt-dev/PhsHqkapSIQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to adt-dev+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
found a solution that may help someone with this. If your project is using fragments that are in the library project, then you must include the fragment in the library project manifest: <activity android:name="[name of fragment]"/>