Commit 74b6da4d authored by tokudu's avatar tokudu
Browse files

Fixed the srcDirs issue with gradle 2.1

Showing with 2 additions and 2 deletions
+2 -2
......@@ -59,7 +59,7 @@ afterEvaluate { project ->
}
task androidJavadocs(type: Javadoc) {
source = android.sourceSets.main.java
source = android.sourceSets.main.java.srcDirs
}
task androidJavadocsJar(type: Jar) {
......@@ -71,7 +71,7 @@ afterEvaluate { project ->
task androidSourcesJar(type: Jar) {
classifier = 'sources'
//basename = artifact_id
from android.sourceSets.main.java
from android.sourceSets.main.java.srcDirs
}
artifacts {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment