We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eeab4e3 commit 00d547aCopy full SHA for 00d547a
1 file changed
library/build.gradle
@@ -74,8 +74,8 @@ def libGroupId = 'com.nagopy.android'
74
def libraryId = 'overlayviewmanager'
75
76
bintray {
77
- user = hasProperty('bintrayUser') ? getProperty('bintrayUser') : ""
78
- key = hasProperty('bintrayKey') ? getProperty('bintrayKey') : ""
+ user = project.hasProperty('bintrayUser') ? project.getProperty('bintrayUser') : ""
+ key = project.hasProperty('bintrayKey') ? project.getProperty('bintrayKey') : ""
79
// dryRun = true
80
81
configurations = ['archives'] //When uploading configuration files
0 commit comments