We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af03528 commit fffd504Copy full SHA for fffd504
build.gradle
@@ -9,9 +9,10 @@ plugins {
9
10
allprojects {
11
group = "com.github.SanjayDevTech.pexels-android"
12
- version = '1.0.3'
+ version = '1.0.4'
13
}
14
15
tasks.register('clean', Delete) {
16
delete rootProject.buildDir
17
-}
+}
18
+tasks.withType(Jar).configureEach { duplicatesStrategy = DuplicatesStrategy.EXCLUDE }
sample/build.gradle
@@ -9,7 +9,7 @@ static def getApiKey(){
props.load(new FileInputStream(new File('secrets.properties')))
return props['PEXELS_API_KEY']
} catch(ignored) {
- return ""
+ return "\"\""
0 commit comments