0
を突然、私はこのエラーを受け取った:これはは解決に失敗しました:haibison.android:underdogs
haibison.android:underdogs:+ ファイルを開く
表示ダイアログプロジェクト構造で:
エラー:解決できませんでしたがビルドファイル: プラグインを適用する: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "ro.demo.proj1"
minSdkVersion 16
targetSdkVersion 23
versionCode 17
versionName "1.0.17"
}
buildTypes {
// Proguard Settings
debug {
minifyEnabled true
proguardFiles '../proguard_dexguard_configs/proguard-android.txt', '../proguard_dexguard_configs/proguard-project.txt'
}
release {
minifyEnabled true
shrinkResources true
proguardFiles '../proguard_dexguard_configs/proguard-android.txt', '../proguard_dexguard_configs/proguard-project.txt'
}
}
/*sourceSets {
main {
java {
exclude '**//*OpenCVUtils.java'
exclude '**//*Recognizer.java'
exclude '**//*BasicCropper.java'
}
}
}*/
packagingOptions {
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/LICENSE'
}
dexOptions {
javaMaxHeapSize "4g"
}
}
dependencies {
compile 'com.joanzapata.pdfview:android-pdfview:[email protected]'
compile 'haibison.android:lockpattern:10.0.0'
}
すべてのフィードバックが理解されるであろう。
とプロジェクトのビルドファイルは次のとおりです。https://bitbucket.org/haibison/android-lockpattern/wiki/Quick-Useから
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0'
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
maven { url 'http://haibison.bitbucket.org/maven-repos' }
maven { url 'https://mvnrepository.com/artifact/com.github.amlcurran.showcaseview/library' }
flatDir {
dirs '../third_party_lib/aar'
}
}
}
に以下を追加する必要があるように見えますその依存関係。 –
httpsの代わりにhttp参照がありましたが、今までどのように動いていたのか分かりません。 – aurelianr
@aurelianrと同じですが、httpsの変更だけでなく、bitbucket.orgもbitbucket.ioに変更されています – Bruce