bintray

How to include dependencies when publish the library to bintray in android

本秂侑毒 提交于 2019-12-05 12:22:45
I'm new to publish own library in android. I created my own library and uploaded it to bintray. My library depends several third party libraries. When I see pom.xml file, there are dependency information. But when I add my library to test project gradle, it didn't import its dependencies. So I had to add it manually test project's gradle. How can I import dependency module automatically when I add my library to test project's gradle? Is there anyone that can solve this? My library is on binary's maven repository. I find expert in this scope now. You need to include your library as a transitive

Issue using Encrypted bintray key in travis.yml

心已入冬 提交于 2019-12-05 09:16:41
So When i use the below in .travis.yml it works .. ********************* deploy: user: mybintrayuserid provider: bintray file: .bintray_descriptor.yml key: myapikey *********************** but if i change this to below i get error: ************************** deploy: user: mybintrayuserid provider: bintray file: .bintray_descriptor.yml key: secure: encryptedHashHash **************************** Error that i get : [Bintray Upload] Bintray response: 401 Unauthorized. This resource requires authentication . How i generated the key : travis encrypt myapikey --add deploy.key Note: I've added

How to generate gpg signing keys in bintray for jcenter in windows

主宰稳场 提交于 2019-12-04 04:33:11
I am unable to get GPG signing keys. Please any one tell me. Thanks How to generate gps signing keys in windows for jcenter Windows users can generate GPG keys using GPG4Win . There are many tutorials available, for example this one . For Linux/Mac you can use gpg . I learned how to do this here . I needed to prefix the following commands with sudo . Generate the keys gpg --gen-key Follow the defaults but enter your name and email and optionally a password. List the keys. gpg --list-keys which should show something like this: pub 2038R/91E83BF2 2017-05-13 uid Bob <name@example.com> sub 2038R

JCenter and Bintray not in Sync

五迷三道 提交于 2019-12-02 06:39:01
问题 I published a Scala library in Bintray, for Scala 2.11 and 2.10 But in JCenter, it is only available the Scala 2.10 version. I thought that it was in sync automatically, but looks like I was wrong. Any idea how to sync both repositories? 回答1: Usually when changing the artifact path you won't be able to resolve your content through JCenter although it was previously included. The reason for this is that the inclusion of your scala library in JCenter is for the files’ path. Therefore, it was

JCenter and Bintray not in Sync

微笑、不失礼 提交于 2019-12-02 05:47:57
I published a Scala library in Bintray , for Scala 2.11 and 2.10 But in JCenter , it is only available the Scala 2.10 version. I thought that it was in sync automatically, but looks like I was wrong. Any idea how to sync both repositories? Usually when changing the artifact path you won't be able to resolve your content through JCenter although it was previously included. The reason for this is that the inclusion of your scala library in JCenter is for the files’ path. Therefore, it was originally included under the path prefix 'com/acervera/osm4scala/osm4scala-core_2.10'. However, we have re

Trouble Publishing Android Studio Library on jCenter with Bintray

半腔热情 提交于 2019-12-02 00:42:51
I'm following this tutorial to publish an example Android Studio library on Jcenter: http://crushingcode.co/publish-your-android-library-via-jcenter/ It seems very clear. I've created my GitHub repository with this library at this link: https://github.com/alessandroargentieri/mylibview I've also Signed in to Bintray.com, and created a new repository which must contain my library (as explained in the tutorial above). To publish a repository on Bintray I must create an organisation, then you create the repository. So these are my data: Bintray username: alessandroargentieri organisation:

Failed to apply plugin Android Studio

可紊 提交于 2019-12-01 15:02:13
I am trying to import ExoPlayer library into my Android Studio project. I have tryed few times with several methods ( importing direct with GRADLE ), import as module, copy paste it, I get the same error: Error:(15) A problem occurred evaluating project ':..:ExoPlayer:library'. > Failed to apply plugin [id 'bintray-release'] > Plugin with id 'bintray-release' not found. In library gradle I found the apply plugin line: apply plugin: 'bintray-release' After Searching the library and apply it to dependencies I still got the error: dependencies { compile 'com.novoda:bintray-release:0.2.10' } Any

there is no “add to jcenter” button in “https://bintray.com”

痞子三分冷 提交于 2019-12-01 07:17:16
I want to upload a library to jcenter, now I have upload it into " https://bintray.com ", but there is no "add to jcenter" button in "Linked to" module, I have read the document and compared it with other person's, but can't found out the reason. the package link click here Before you can include your package in JCenter, the following requirements must be met: 1)The package must be in a Maven repository and must contain Maven sources. 2)The path of the files (entered in the Upload Files form of the Version page) must conform to Maven standards (the Group ID and Artifact ID combination must be

there is no “add to jcenter” button in “https://bintray.com”

邮差的信 提交于 2019-12-01 04:51:53
问题 I want to upload a library to jcenter, now I have upload it into "https://bintray.com", but there is no "add to jcenter" button in "Linked to" module, I have read the document and compared it with other person's, but can't found out the reason. the package link click here Before you can include your package in JCenter, the following requirements must be met: 1)The package must be in a Maven repository and must contain Maven sources. 2)The path of the files (entered in the Upload Files form of

Bintray does not sync one of the artifacts of the package to the jcenter

人走茶凉 提交于 2019-12-01 01:04:56
We've published a package with two artifacts in it ( android and os ) to Bintray: https://dl.bintray.com/gojuno/maven/com/gojuno/commander/ Then we've enabled sync with jcenter for this package, but only one of the artifacts is in sync ( android is synched while os is not): https://jcenter.bintray.com/com/gojuno/commander/ I contacted Bintray through Inbox on bintray.com, Contact Us on bintray.com, Email and Twitter and haven't received reply anywhere, this issue is blocking for the project. I saw similar issue was resolved through StackOverflow Bintray and JCenter not in Sync , so this is my