私はこの依存関係を追加しようとしています: 'com.iarcuschin:simpleratingbar:0.1.5'をコンパイルしても動作しません。単純な評価バーの依存関係のエラー
これは私のbuild.gradleモジュールのアプリです:
android {
compileSdkVersion 24
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.example.cristiana.licentaapp"
minSdkVersion 15
targetSdkVersion 24
versionCode 1
versionName "1.0"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha7'
compile 'com.android.support:design:24.2.1'
compile 'com.android.support:cardview-v7:24.2.1'
compile 'com.iarcuschin:simpleratingbar:0.1.5'
compile 'com.google.firebase:firebase-invites:10.0.1'
compile 'com.google.firebase:firebase-database:10.0.1'
compile 'com.google.firebase:firebase-core:10.0.1'
compile 'com.google.firebase:firebase-crash:10.0.1'
compile 'com.google.firebase:firebase-auth:10.0.1'
//compile 'com.facebook.android:facebook-android-sdk:4.23.0'
//compile 'com.facebook.android:facebook-android-sdk:[4,5)'
compile 'com.squareup.picasso:picasso:2.4.0'
}
apply plugin: 'com.google.gms.google-services'
とプロジェクトBuild.gradle
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.1'
classpath 'com.google.gms:google-services:3.0.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
エラー: ':アプリ' 問題は、プロジェクトの設定を発生しました。
Could not resolve all dependencies for configuration ':app:_debugApkCopy'. Could not resolve com.iarcuschin:simpleratingbar:0.1.5. Required by: project :app Could not resolve com.iarcuschin:simpleratingbar:0.1.5. Could not get resource ' https://jcenter.bintray.com/com/iarcuschin/simpleratingbar/0.1.5/simpleratingbar-0.1.5.pom '. Could not GET ' https://jcenter.bintray.com/com/iarcuschin/simpleratingbar/0.1.5/simpleratingbar-0.1.5.pom '. Connect to jcenter.bintray.com:443 [jcenter.bintray.com/5.153.35.248] failed: Connection timed out: connect
変更することをお勧めしますか?あなたのコードは私のようなものです – CrisABCD
sdkのバージョンを変更しようとします。 – Rims