Skip to content

Commit

Permalink
Changes to bintray upload
Browse files Browse the repository at this point in the history
  • Loading branch information
markusgursch-aaa committed Jun 12, 2019
1 parent 9f51cca commit a31a7c9
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ deploy:
tags: true
env:
global:
secure: H7tImcAk6nDGHaS+TQcroo3PBTOPVZlg+Ylo6VJkOGjeEgLoU0sC98rJuHkamNs2dqJClA50hd8u2ajcqvkuFIHLb939g1zjuJwA5lUJ+XWcjl53b1eRbiw4xWAjZxbcBB887PTpNrz5UUB+f+Hr1qfQr7tiDVpyAf6sjEwq2+gxjRECPqTiKZFOa304WpCfdQa6+f/KiqwuhkJnmm+wxATIjx3zqlLKuAdGpkVYnA+Ia5Zz553QzRoeaw+NkHITkOoRGExo98iXi7lPJOCvub5w0gOWKlsLyWoF47/ylv2rXLlANfM9bp6MMBLZpLmgI8XaCl3dPGs6Goedw1M2npbHiyWUhjLBtqcfa7fr4EZqfYG8wS3GtGqSe0iGwwx661WjMwv+yRifY/rWIYjY3MuFhCNSUBiW03T4ll4mgoYhgv7/bi/wqDEQW+D2U1oG19lCELfSt4VDUpe1ypX+Qg8a+8s0rbDq3G/Ca+/wLN5RjWLrohLlpTF88ahNKIkDyWqxrJBwBaNvbKY/c11o80q++5kTTdkfvFVZgi7gYLcraOyWHNyXdHylMASMDCpzJyykd1Blsy3ruDMr77UGKsIgy96MKC8WztdZfEFiPn9htc1BfrkonkNdAFKNpIZObzFEAeB+GZwx0ECiDJSY4bPls0VNitbdq98UPygY8HU=
secure: NPXqAvwpExPLezEWMUOWeorI0G06vQMmAdQ/+wrPFAq89ujebt7ZVWrUfTGxrLc66Ja3uLikgC+UHSP6ZcbSUUutKMmCp8DAR5dyc/oP2+z2OQhVfx81s1MP42viUyEDnH/9Ydw7X/x/eHY/FILujED6pVCUJyLA2zDeeToHv4fNcCDjDuSVjof3Cc1Y8WJCNWAX3Y/DD4Y99qn+IPrWBp+BBGR2ooDhypp6tnVdlaJ4t0q5i9fNEBa7YXskTWKiHyekwy1Ljj6ih/W/uyX7yGZLjCnbZ2wDzKK+XK83EsNoCDKZSO7kUMBRgXwy6iseDcvaTLitHnOLHQKulgBkyLYp5gTKP/FMs1fyg+sk5ultoOyboF9PQvWursy7sTGn+WVTOp2MbN8UeV41m4iyOX0QRcMRHH5zErO8H/jD861pJPf7HS7UBXfyzPRQT313w80uFLhXPcEcGxR6m6QKXbw4HIWuqtR4QjGk0ED0lD/d67GzUj84zutBTmm53uknufBShvWI+9HPHVFX7/YAgtdFGH0+kIXiLI0G2/6IGeTCP9RzWsl6ET79evpkM3RTFPT9NhHvarRPb1AYkCzim3G0O80eZMmAT80i3eVw1Ncdw54sP6JZk9wRftKLdnGWxUeqoMefAAvEJnTFFLlQ5xVlnJAFgccgUjelih0/HM8=
24 changes: 24 additions & 0 deletions inappupdater/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ android {
versionCode 1
versionName "1.0"

// the name of the artifact
archivesBaseName = 'a3inappupdater' // e.g. a3webview


testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'consumer-rules.pro'
}
Expand All @@ -32,6 +36,26 @@ android {

}

bintray {
user = 'allaboutapps'
// read pw from secure travis.yml
key = System.getenv('BINTRAY_KEY')
pkg {
repo = 'A3-Android'

version {
name = project.version
desc = ''
vcsTag = System.getenv('TRAVIS_TAG')
}

licenses = ['MIT']
vcsUrl = 'https://github.com/allaboutapps/InAppUpdater'
websiteUrl = 'http://www.allaboutapps.at'
}
configurations = ['archives']
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
Expand Down

0 comments on commit a31a7c9

Please sign in to comment.