2017-02-02 10 views
0

ここはgraleファイルです。アンドロイドスタジオのjitpackによる依存関係へのforked gitリポジトリを使用できますか?

build.gradle(プロジェクト)

buildscript { 
repositories { 
jcenter() 
    maven { url 'https://maven.fabric.io/public'} 
} 
dependencies { 
    classpath 'com.android.tools.build:gradle:2.2.3' 
    classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5' 

// NOTE: Do not place your application dependencies here; they belong 
// in the individual module build.gradle files 

    classpath 'io.fabric.tools:gradle:1.+' 
    } 
} 

allprojects { 
    repositories { 
     jcenter() 
     maven { url 'https://maven.fabric.io/public'} 
     maven { url 'https://jitpack.io' } 
    } 
} 

task clean(type: Delete) { 
    delete rootProject.buildDir 
} 

build.gradle(モジュール:アプリ)

dependencies { 
compile fileTree(dir: 'libs', include: ['*.jar']) 
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { 
exclude group: 'com.android.support', module: 'support-annotations' 
}) 
compile 'com.android.support:appcompat-v7:23.4.0' 
compile 'com.google.android.gms:play-services:8.4.0' 
compile 'com.android.support:support-v4:23.4.0' 
compile 'com.google.code.gson:gson:2.8.0' 
compile 'org.apache.maven:maven-artifact:3.3.9' 

// https://mvnrepository.com/art.../commons-codec/commons-codec 
compile group: 'commons-codec', name: 'commons-codec', version: '1.9' 

compile('com.crashlytics.sdk.android:crashlytics:[email protected]') { 
transitive = true; 
} 
compile 'com.github.Kernelzero:androidtiffbitmapfactory:1.0' 
// compile 'com.github.beyka:androidtiffbitmapfactory:0.9.1' 
} 

私はjitpack

にフォークGitプロジェクトを登録しましたが、私は受け取りましたエラーログ。 com.github.Kernerlzero:androidtiffbitmapfactory:1.0

何が間違っているの

は解決できませんでしたか?

答えて

関連する問題