Skip to content

Commit 00d547a

Browse files
committed
Fix
1 parent eeab4e3 commit 00d547a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

library/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ def libGroupId = 'com.nagopy.android'
7474
def libraryId = 'overlayviewmanager'
7575

7676
bintray {
77-
user = hasProperty('bintrayUser') ? getProperty('bintrayUser') : ""
78-
key = hasProperty('bintrayKey') ? getProperty('bintrayKey') : ""
77+
user = project.hasProperty('bintrayUser') ? project.getProperty('bintrayUser') : ""
78+
key = project.hasProperty('bintrayKey') ? project.getProperty('bintrayKey') : ""
7979
// dryRun = true
8080

8181
configurations = ['archives'] //When uploading configuration files

0 commit comments

Comments
 (0)