エラー:プロジェクト ':app'の構成中に問題が発生しました。
Support-v4.jar(com.Android.support:support-v4:24.0.0)が見つかりませんでした。次の場所で検索: https://jcenter.bintray.com/com/Android/support/support-v4/24.0.0/support-v4-24.0.0.jar
MYSDKツールはこの画像のようなものです
そして私のGradleは
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.Android.application'
apply plugin: 'io.fabric'
repositories {
maven { url 'https://maven.fabric.io/public' }
}
Android {
compileSdkVersion 24
buildToolsVersion "24"
dexOptions {
javaMaxHeapSize "4g" //specify the heap size for the dex process
preDexLibraries = false //delete the already predexed libraries
}
defaultConfig {
applicationId "com.lionvisionsits.kkasons"
minSdkVersion 19
targetSdkVersion 24
multiDexEnabled false
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.Android.support:appcompat-v7:24.0.0'
compile('com.digits.sdk.Android:digits:2.0.0@aar') {
transitive = true;
}
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.Android.support:cardview-v7:24.0.0'
compile 'com.Android.support:design:24.0.0'
compile 'com.Android.support:recyclerview-v7:24.0.0'
compile 'org.jbundle.util.osgi.wrapped:org.jbundle.util.osgi.wrapped.org.Apache.http.client:4.1.2'
compile 'com.Android.support:multidex:1.0.1'
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
compile 'com.google.code.gson:gson:2.4'
compile 'com.google.Android.gms:play-services:9.4.0'
compile 'com.google.firebase:firebase-messaging:9.4.0'
compile 'ch.acra:acra:4.9.0'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'me.relex:circleindicator:1.2.1@aar'
compile 'com.github.arimorty:floatingsearchview:2.0.3'
compile('com.digits.sdk.Android:digits:2.0.0@aar') {
transitive = true;
}
compile 'com.Android.support:support-v4:24.0.0'
}
apply plugin: 'com.google.gms.google-services'
誰かが私を助けることができますか?
V24.2.1に更新した後、debug\AndroidMenifest.xmlでこのエラーが発生します
ありがとう&よろしくジェイ
プラットフォーム/ Android内のbuild.gradleファイルにいくつかの変更を加える必要があり、次のようにjcenter()の前にmaven {url ' https://maven.google.com '}を追加する必要があります。
allprojects {
repositories {
mavenCentral()
maven { url 'https://maven.google.com' } //add this code
jcenter()
}
}
これは現在、Googleライブラリの新しいバージョンに不可欠です。彼らはライブラリをAndroid SDKからMavenリポジトリに移動しました。
私は同じ問題を抱えていました、私は更新しました:
classpath 'com.Android.tools.build:gradle:2.+'
と私のgradleラッパー
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.Zip
そしてそれは機能します
Android
ブロック内でこれを試してください
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
}
または、model
ブロックがある場合は、これを試してください
compileOptions.with {
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
}
com.Android.support:support-v4:24.0.0
のバージョンがAndroid studio。次のように試すことができます:File-> project structure->app->dependencies->+->Library dependency
、com.Android.support:support-v4:xx.x.x
を選択します。問題は、ライブラリを最新のものに変更できることです。
AndroidManifest.xml
で必要なbuildVersionCode
またはname
の使用はありません。 app build.gradle
ファイルでより適切に定義できます。以下のように:
defaultConfig {
applicationId "com.example.r"
minSdkVersion 15
versionCode 418
versionName "4.4.0"
}