gpt4 book ai didi

android - 来自 gradle (Android Studio) 的奇怪消息。

转载 作者:行者123 更新时间:2023-12-03 05:10:49 36 4
gpt4 key购买 nike

从一秒钟到另一秒钟,我收到以下错误 Gradle 安卓工作室 我不知道如何处理它。

尝试启动我的应用程序时出错:

Error:A problem occurred configuring project ':app'.
> Could not resolve all dependencies for configuration ':app:_map_testApkCopy'.
> Could not find com.android.support:appcompat-v7:27.0.1.
Required by:
project :app
project :app > com.android.support:design:25.0.0
> Could not find com.android.support:support-v4:27.0.1.
Required by:
project :app > com.android.support:design:25.0.0
project :app > com.android.support:design:25.0.0 > com.android.support:transition:25.0.0
> Could not find com.android.support:support-annotations:27.0.1.
Required by:
project :app > com.android.support:design:25.0.0 > com.android.support:recyclerview-v7:25.0.0
project :app > com.android.support:design:25.0.0 > com.android.support:recyclerview-v7:25.0.0 > com.android.support:support-compat:25.0.0
> Could not find com.android.support:support-annotations:27.0.1.
Required by:
project :app > com.facebook.android:facebook-android-sdk:4.29.0 > com.facebook.android:facebook-core:4.29.0
> Could not find com.android.support:support-core-utils:27.0.1.
Required by:
project :app > com.facebook.android:facebook-android-sdk:4.29.0 > com.facebook.android:facebook-core:4.29.0
> Could not find com.android.support:appcompat-v7:27.0.1.
Required by:
project :app > com.facebook.android:facebook-android-sdk:4.29.0 > com.facebook.android:facebook-common:4.29.0
> Could not find com.android.support:cardview-v7:27.0.1.
Required by:
project :app > com.facebook.android:facebook-android-sdk:4.29.0 > com.facebook.android:facebook-common:4.29.0
> Could not find com.android.support:customtabs:27.0.1.
Required by:
project :app > com.facebook.android:facebook-android-sdk:4.29.0 > com.facebook.android:facebook-common:4.29.0
> Could not find com.android.support:support-v4:27.0.1.
Required by:
project :app > com.facebook.android:facebook-android-sdk:4.29.0 > com.facebook.android:facebook-common:4.29.0

build.gradle : (Mobile: app) (自一个月以来没有变化。与 repo 相比没有变化)
apply plugin: 'com.android.application'

android {
signingConfigs {
sapps {
keyAlias 'keyalias'
keyPassword 'xxxxxx'
storeFile file('C:/eclipse/keystore/mykeystore')
storePassword 'xxxxxx'
}
}
compileSdkVersion 25
buildToolsVersion "25.0.3"

defaultConfig {
applicationId "appid"
minSdkVersion 15
targetSdkVersion 25
versionCode 179
versionName "2.54"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
resValue "string", "appID", "wgd"
manifestPlaceholders = [iconpath: "@drawable/icon", versionCode:"161", versionName:"2.37"]

}
buildTypes {
demo {
buildConfigField "String", "appID", "\"WGD\""
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.sapps
resValue "string", "app_name", "Chronica"
manifestPlaceholders = [iconpath: "@drawable/icon", facebookid:"@string/facebook_app_id_demo"]
applicationIdSuffix '.chronicbrowser'
}
demo_test {
buildConfigField "String", "appID", "\"WGD_TEST\""
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.sapps
debuggable true

resValue "string", "app_name", "Chronica Test"
manifestPlaceholders = [iconpath: "@drawable/icon", facebookid:"@string/facebook_app_id_demo"]
applicationIdSuffix '.chronicbrowser_wgd_test'
}
timeline {

buildConfigField "String", "appID", "\"WG\""
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.sapps
resValue "string", "app_name", "WorldHistory"
applicationIdSuffix '.chronicbrowser_wg_en'
manifestPlaceholders = [iconpath: "@drawable/icon_timeline", facebookid:"@string/facebook_app_id_timeline"]
}
timeline_test {
buildConfigField "String", "appID", "\"WG_TEST\""
minifyEnabled false
debuggable true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
resValue "string", "app_name", "WorldHistory Test"
applicationIdSuffix '.chronicbrowser_wg_en'
manifestPlaceholders = [iconpath: "@drawable/icon_timeline_test", facebookid:"@string/facebook_app_id_timeline"]
signingConfig signingConfigs.sapps
}
map {
buildConfigField "String", "appID", "\"WG_MAPS\""
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
resValue "string", "app_name", "WorldHistory Atlas"
applicationIdSuffix '.chronicbrowser_maps_en'
manifestPlaceholders = [iconpath: "@drawable/icon_maps", facebookid:"@string/facebook_app_id_maps"]
signingConfig signingConfigs.sapps
}
map_test {
buildConfigField "String", "appID", "\"WG_MAPS_TEST\""
//resValue "string", "RES_appID", "wgd"
debuggable true
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
resValue "string", "app_name", "WorldHistory Atlas Test"
applicationIdSuffix '.chronicbrowser_maps_en'
manifestPlaceholders = [iconpath: "@drawable/icon_maps_test", facebookid:"@string/facebook_app_id_maps"]
signingConfig signingConfigs.sapps

}
worldwarII {
buildConfigField "String", "appID", "\"WW2\""
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
resValue "string", "app_name", "WorldWar II"
applicationIdSuffix '.chronicbrowser_ww2_en'
manifestPlaceholders = [iconpath: "@drawable/icon_ww2", facebookid:"@string/facebook_app_id_ww2"]
signingConfig signingConfigs.sapps

}
worldwarII_test {
buildConfigField "String", "appID", "\"WW2_TEST\""
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
resValue "string", "app_name", "WorldWar II Test"
applicationIdSuffix '.chronicbrowser_ww2_en_test'
manifestPlaceholders = [iconpath: "@drawable/icon_ww2", facebookid:"@string/facebook_app_id_ww2"]
signingConfig signingConfigs.sapps
}
}
compileOptions.encoding = 'ISO-8859-1'
productFlavors {
}
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')

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:25.0.0'
compile 'com.android.support:design:25.0.0'
testCompile 'junit:junit:4.12'
compile files('libs/lvl.jar')
compile files('libs/google-play-services.jar')
compile 'com.facebook.android:facebook-android-sdk:[4,5)'
compile files('libs/GoogleConversionTrackingSdk-2.2.4.jar')
}


repositories {
mavenCentral()
}

有人能帮我吗 ?

最佳答案

可能是由于compile 'com.facebook.android:facebook-android-sdk:[4,5)' .改变它

compile('com.facebook.android:facebook-android-sdk:[4,5)') { 
exclude group: 'com.android.support'
}

它是唯一具有开放版本的。

关于android - 来自 gradle (Android Studio) 的奇怪消息。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47675747/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com