Skip to content

Commit 01f49ec

Browse files
committed
Changed SrcDirs to SourceFiles and other things to try and fix build.
1 parent 91e3dc8 commit 01f49ec

1 file changed

Lines changed: 3 additions & 8 deletions

File tree

CommonCode/build.gradle

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,16 @@ android {
1414
}
1515
buildTypes {
1616
release {
17+
debuggable true
1718
ndk {
1819
abiFilters "armeabi-v7a"
1920
}
20-
21-
minifyEnabled true
22-
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2321
}
2422
debug {
23+
debuggable true
2524
ndk {
2625
abiFilters "armeabi-v7a"
2726
}
28-
29-
minifyEnabled true
30-
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
31-
useProguard false
3227
}
3328
}
3429
compileOptions {
@@ -57,7 +52,7 @@ task sourcesJar(type: Jar) {
5752

5853
task javadoc(type: Javadoc) {
5954
failOnError false
60-
source = android.sourceSets.main.java.srcDirs
55+
source = android.sourceSets.main.java.sourceFiles
6156
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
6257
classpath += configurations.compile
6358
}

0 commit comments

Comments
 (0)