問題タブ [jcenter]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - Androidスタジオに私のgithubライブラリを追加する方法
LibraryOne などのライブラリがあり、そのパッケージ名は com.gorkem.libraryone で、ライブラリを github にプッシュしました。このライブラリを他のプロジェクトで使用するとき、次のような依存関係でこのライブラリにアクセスしたい: 'com.gorkem.libraryone' をコンパイルする方法? 「com.google.code.gson:gson:2.3.1」をコンパイルするなど、多くの例を挙げることができます。この問題に関するチュートリアルはありますか?
maven - Bintray 405は許可されていませんnginx
bintray で android-library を jcenter に共有しようとしています。bintray に maven リポジトリを作成し、ライブラリをリポジトリにアップロードしました。しかし、ライセンスを追加しようとすると、405 not allowed nginx ページが表示されます。
ライセンスの追加を許可しない理由。何か足りないものはありますか?
このブログをフォローしました。
android - How to upload module to JCenter using gradle bintray plugin?
I am sorry if I am being too stupid but I just can't make it work... I have an Android Module Project in AS that I want to upload to JCenter - using gradle bintray plugin from JFrog. I follow this tutorial in order to create the repository on bintray and I ended up with the following build.gradle for the module:
And this one for the project:
After running the task gradle bintrayUpload
(it finishes sucessfully) my repository in bintray looks like that:
And when you open the unspecified folder you'll find this:
So questions!
- Why version is being upload like unspecifiend?
- I can't compile my project with the given group id:artifact:version, when trying to build it on AS it says that it fails to resolve the path to the artifact.
Any help will be appreciated!
android - JCenter のライブラリを Android Studio の Gradle で解決できない
ライブラリを Bintray に公開したところ、JCenter に正しくリンクされたことが通知されました。Bintray のライブラリはここで見ることができます。念のために言っておきますが、JCenter で正しく表示されていることを確認してください。
次のように Gradle 依存関係として追加してテストしようとしています。
maven-metadata.xml
ファイルによると、どちらが正しいはずです:
ただし、同期するbuild.gradle
と、次のエラーがスローされます。
解決に失敗しました: com.truizlop.sectionedrecyclerview:library:1.0.0
JCenter で他の依存関係を同期できることを確認しましたが、独自のライブラリでは同期できません。ライブラリは Maven Central に送信されていませんが、JCenter が Android Studio のデフォルトのリポジトリであるため、問題にはならないと思います。私は何が欠けていますか?
android - アプリのandroid build.gradleファイル - デフォルトのリポジトリとは
トップレベルのbuild.gradleファイルの私のbuild.gradleファイルでは、jcenter()は特に書かれていません。だから私は最上位のbuild.gradleファイルに次のものがあります:
// すべてのサブプロジェクト/モジュールに共通の構成オプションを追加できるトップレベルのビルド ファイル。
どういうわけか、モジュールで定義したすべての依存関係がまだ見つかっており、アプリは正常に動作します。何も見つからない場合、 jcenter() がデフォルトのレポであると想定できますか? デフォルトで使用されますか?そうでなければ、私の依存関係はどうなっていますか。また、jcenter() をオーバーライドして別のレポを使用したい場合は、どうすればよいでしょうか。
では、次のカスタム リポジトリがあった場合はどうなるでしょうか。
最初にmavenカスタムリポジトリをチェックしてから、依存関係が見つからない場合はjcenter()をチェックするということですか? ところで、私はファイルからIDEキャッシュをクリアしました->これをすべてテストする前にキャッシュを無効にします。