Skip to content

Commit fffd504

Browse files
committed
Fixed multi modular issues
1 parent af03528 commit fffd504

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

build.gradle

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ plugins {
99

1010
allprojects {
1111
group = "com.github.SanjayDevTech.pexels-android"
12-
version = '1.0.3'
12+
version = '1.0.4'
1313
}
1414

1515
tasks.register('clean', Delete) {
1616
delete rootProject.buildDir
17-
}
17+
}
18+
tasks.withType(Jar).configureEach { duplicatesStrategy = DuplicatesStrategy.EXCLUDE }

sample/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ static def getApiKey(){
99
props.load(new FileInputStream(new File('secrets.properties')))
1010
return props['PEXELS_API_KEY']
1111
} catch(ignored) {
12-
return ""
12+
return "\"\""
1313
}
1414
}
1515

0 commit comments

Comments
 (0)