Skip to content

Commit 89af728

Browse files
committed
Updated android tests to fix dependency problems since split of android and client.
1 parent f5b35ab commit 89af728

File tree

5 files changed

+3334
-42
lines changed

5 files changed

+3334
-42
lines changed

src/AndroidClient/android/build.gradle

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
22
apply plugin: 'com.github.dcendents.android-maven'
33
apply plugin: 'com.jfrog.bintray'
44

5-
version = "1.0.9"
5+
version = "1.0.10"
66

77
android {
88
compileSdkVersion 21
@@ -94,26 +94,3 @@ dependencies {
9494
compile 'com.android.support:appcompat-v7:21.0.3'
9595
compile project(':client')
9696
}
97-
98-
task sourcesJar(type: Jar) {
99-
from android.sourceSets.main.java.srcDirs
100-
classifier = 'sources'
101-
}
102-
103-
task javadoc(type: Javadoc) {
104-
source = android.sourceSets.main.java.srcDirs
105-
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
106-
}
107-
108-
task javadocJar(type: Jar, dependsOn: javadoc) {
109-
classifier = 'javadoc'
110-
from javadoc.destinationDir
111-
}
112-
artifacts {
113-
archives javadocJar
114-
archives sourcesJar
115-
}
116-
117-
task findConventions << {
118-
println project.getConvention()
119-
}

0 commit comments

Comments
 (0)