jitpack

JitPack won't use a GitHub repo - included sample repo that demonstrates the issue

ⅰ亾dé卋堺 提交于 2019-12-10 06:00:04
问题 Every time I try to fork an Android library and use it through JitPack, I get errors, give up and choose some other means to customize and use the library. This time I wanted to get to the bottom of this and created a basic app that isolates the problem. Could you download the repo below and tell me what the I'm doing wrong? In this repo is a very basic Android application: https://github.com/gazialankus/JitpackNotWorking. I simply created a new Android application in Android Studio, and

github releases in relation to branching, as used by jitpack

蓝咒 提交于 2019-12-06 14:45:22
问题 Looking at: https://help.github.com/articles/about-releases/ it looks like this is specific to github, and not a general git feature. My usage is, from my perspective, no different than branching. That is, branch x is just a marker. Maybe bug fixes, maybe feature added, whatever, maybe experimental. Granted, I'm a very light user of git, and don't use branching, nor merging, to their full potential. This feature seems totally useless in relation to jitpack. And, yet, seems crucial to how

JitPack won't use a GitHub repo - included sample repo that demonstrates the issue

天涯浪子 提交于 2019-12-05 16:26:44
Every time I try to fork an Android library and use it through JitPack, I get errors, give up and choose some other means to customize and use the library. This time I wanted to get to the bottom of this and created a basic app that isolates the problem. Could you download the repo below and tell me what the I'm doing wrong? In this repo is a very basic Android application: https://github.com/gazialankus/JitpackNotWorking . I simply created a new Android application in Android Studio, and followed the instructions in https://jitpack.io/ to add the https://github.com/ArthurHub/Android-Image

github releases in relation to branching, as used by jitpack

ぃ、小莉子 提交于 2019-12-04 18:24:12
Looking at: https://help.github.com/articles/about-releases/ it looks like this is specific to github, and not a general git feature. My usage is, from my perspective, no different than branching. That is, branch x is just a marker. Maybe bug fixes, maybe feature added, whatever, maybe experimental. Granted, I'm a very light user of git, and don't use branching, nor merging, to their full potential. This feature seems totally useless in relation to jitpack. And, yet, seems crucial to how jitpack operates. Why? As I understand jitpack, a release is created on a repo, and then, automagically, a

Attach sources to kotlin library project don't show up in AS

让人想犯罪 __ 提交于 2019-12-04 00:24:36
I want to attach the sources to an kotlin library project and it looks I succeeded as I have the source-jars now in here: https://jitpack.io/com/github/walleth/kethereum/bip44/0.21/ the version before I did not export the sources - so I thought it is successful. https://jitpack.io/com/github/walleth/kethereum/bip44/0.20/ Unfortunately AS does not show the sources. I am generating them like this: allprojects { repositories { jcenter() maven { url 'https://jitpack.io' } } apply plugin: "kotlin" apply plugin: "jacoco" apply plugin: "maven" apply plugin: "com.github.ben-manes.versions"

How to create a library on Github and use it through gradle dependencies in Android Studio

二次信任 提交于 2019-11-28 17:04:32
I want to create the library and have access to it through the Internet. In Android Studio (via Gradle) dependency may be added in this way: In build.gradle (Module app): dependencies { ... compile 'com.android.support:design:23.1.0' compile 'com.squareup:otto:1.3.8' compile 'com.squareup.picasso:picasso:2.5.2' compile 'com.j256.ormlite:ormlite-core:4.48' compile 'com.j256.ormlite:ormlite-android:4.48' ... } How can I add my own library in this way from github? Refer Jitpack is best to import your project or libs from Github to gradle For more information refer Gabriele Mariotti answer To

jitpack.io failed to resolve github repo

帅比萌擦擦* 提交于 2019-11-28 06:44:04
I have a Github repo and pushed tags on it. This is my gradle file of my main project. apply plugin: 'com.android.application' android { compileSdkVersion 23 buildToolsVersion "23.0.0" defaultConfig { applicationId "dropbox.ric.es.myapplication" minSdkVersion 16 targetSdkVersion 23 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } repositories { //mavenCentral() //jcenter() maven { url "https://jitpack.io" } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar'])

Failed to resolve: com.github.PhilJay:MPAndroidChart:v2.1.4

*爱你&永不变心* 提交于 2019-11-27 13:25:40
I am using MPAndroidChart libarary in android studio.But when i am trying to sync gradle which given an error as below image. Gradle text is here to compile MPAndroidChart libarary. compile 'com.github.PhilJay:MPAndroidChart:v2.1.4' Please help to resolve this problem. Thanks in advance Add maven { url "https://jitpack.io" } to repositories under allprojects not under buildscript see screenshot: Putting repositories { maven { url "https://jitpack.io" } } in build.gradle in app folder fixed my issue! Nafeez Quraishi Above solutions did not work for me. I used below to get MPAndroidChart lib

How to create a library on Github and use it through gradle dependencies in Android Studio

一曲冷凌霜 提交于 2019-11-27 10:09:03
问题 I want to create the library and have access to it through the Internet. In Android Studio (via Gradle) dependency may be added in this way: In build.gradle (Module app): dependencies { ... compile 'com.android.support:design:23.1.0' compile 'com.squareup:otto:1.3.8' compile 'com.squareup.picasso:picasso:2.5.2' compile 'com.j256.ormlite:ormlite-core:4.48' compile 'com.j256.ormlite:ormlite-android:4.48' ... } How can I add my own library in this way from github? 回答1: Refer Jitpack is best to

jitpack.io failed to resolve github repo

主宰稳场 提交于 2019-11-27 01:27:38
问题 I have a Github repo and pushed tags on it. This is my gradle file of my main project. apply plugin: 'com.android.application' android { compileSdkVersion 23 buildToolsVersion "23.0.0" defaultConfig { applicationId "dropbox.ric.es.myapplication" minSdkVersion 16 targetSdkVersion 23 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } repositories { //mavenCentral() //jcenter()