core-library version:0.1.0 Gradle Project Code: buildscript { repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:2.3.2' classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { jcenter() maven { url 'https://jitpack.io' } } } Gradle App Code: def daggerVersion = '2.10' def androidAnnotationVersion = '4.2.0' dependencies { testCompile 'junit:junit:4.12' compile 'com.github.titibok:core-library:0.1.0' annotationProcessor "com.google.dagger:dagger-android-processor:$daggerVersion" annotationProcessor "com.google.dagger:dagger-compiler:$daggerVersion" annotationProcessor "org.androidannotations:androidannotations:$androidAnnotationVersion" }