File tree 4 files changed +33
-1
lines changed
4 files changed +33
-1
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,14 @@ android {
16
16
proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
17
17
}
18
18
}
19
+
20
+ if (JavaVersion . current(). isJava8Compatible()) {
21
+ allprojects {
22
+ tasks. withType(Javadoc ) {
23
+ options. addStringOption(' Xdoclint:none' , ' -quiet' )
24
+ }
25
+ }
26
+ }
19
27
}
20
28
21
29
dependencies {
Original file line number Diff line number Diff line change @@ -16,14 +16,22 @@ android {
16
16
proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
17
17
}
18
18
}
19
+
20
+ if (JavaVersion . current(). isJava8Compatible()) {
21
+ allprojects {
22
+ tasks. withType(Javadoc ) {
23
+ options. addStringOption(' Xdoclint:none' , ' -quiet' )
24
+ }
25
+ }
26
+ }
19
27
}
20
28
21
29
dependencies {
22
30
compile fileTree(include : [' *.jar' ], dir : ' libs' )
23
31
testCompile ' junit:junit:4.12'
24
32
25
33
// compile "com.github.nisrulz:easydeviceinfo-common:$rootProject.ext.easyDeviceInfoVersionName"
26
-
34
+
27
35
compile project(' :easydeviceinfo-common' )
28
36
compile " com.android.support:support-annotations:$rootProject . ext . supportLibVersion "
29
37
}
Original file line number Diff line number Diff line change @@ -16,6 +16,14 @@ android {
16
16
proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
17
17
}
18
18
}
19
+
20
+ if (JavaVersion . current(). isJava8Compatible()) {
21
+ allprojects {
22
+ tasks. withType(Javadoc ) {
23
+ options. addStringOption(' Xdoclint:none' , ' -quiet' )
24
+ }
25
+ }
26
+ }
19
27
}
20
28
21
29
dependencies {
Original file line number Diff line number Diff line change @@ -41,6 +41,14 @@ android {
41
41
proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
42
42
}
43
43
}
44
+
45
+ if (JavaVersion . current(). isJava8Compatible()) {
46
+ allprojects {
47
+ tasks. withType(Javadoc ) {
48
+ options. addStringOption(' Xdoclint:none' , ' -quiet' )
49
+ }
50
+ }
51
+ }
44
52
}
45
53
46
54
dependencies {
You can’t perform that action at this time.
0 commit comments