我在我的app / build.gradle中使用此代码。
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.avizhegroup.android.dsmmaps"
minSdkVersion 21
targetSdkVersion 26
versionCode 2
versionName "1.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
useLibrary 'org.apache.http.legacy'
}
repositories {
maven {
url "https://jitpack.io"
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:design:26.1.0'
implementation 'com.google.android.gms:play-services-maps:11.0.4'
implementation 'com.android.volley:volley:1.1.0'
implementation 'uk.co.chrisjenx:calligraphy:2.3.0'
implementation 'com.github.zookey:universalpreferences:0.0.4'
implementation 'com.google.android.gms:play-services-location:11.0.4'
implementation 'com.jakewharton:butterknife:8.8.1'
implementation 'com.github.bosphere.android-filelogger:filelogger:1.0.3'
implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
implementation 'com.orhanobut:logger:2.2.0'
implementation 'com.orhanobut:logger:2.1.1'
implementation 'com.orhanobut:dialogplus:1.11@aar'
implementation files('libs/usbdriver.jar')
implementation files('src/main/libs/rlmotgusbdriver.jar')
implementation 'me.imid.swipebacklayout.lib:library:1.1.0'
implementation 'com.felipecsl.asymmetricgridview:library:2.0.1'
implementation 'com.readystatesoftware.sqliteasset:sqliteassethelper:+'
}
同步Gradle时出现问题。这些问题已经发生:
错误:无法解决:设计
受影响的模块:应用程序
错误:无法解决:appcompat-v7
受影响的模块:应用程序
错误:无法解决:过渡
受影响的模块:应用程序
错误:无法解决:recyclerview-v7
受影响的模块:应用程序
错误:无法解决:support-v4
受影响的模块:应用程序
错误:无法解决:support-media-compat
受影响的模块:应用程序
错误:无法解决:animated-vector-drawable
受影响的模块:应用程序
错误:无法解决:support-vector-drawable
受影响的模块:应用程序
错误:无法解决:支持片段
受影响的模块:应用程序
错误:无法解决:support-core-utils
受影响的模块:应用程序
错误:无法解决:support-core-ui
受影响的模块:应用程序
错误:无法解决:support-compat
受影响的模块:应用程序
错误:无法解决:支持注释
受影响的模块:应用程序
错误:无法解决:运行时
受影响的模块:应用程序
错误:无法解决:常见
受影响的模块:应用
我取消了“实验”中的首选项中的变量,更改了依存关系,更改了SDK版本,更改了等级版本...此代码在Windows中有效,但在Mac中则不适用。
我使用约束布局和AndroidStudio3.3.2
我该如何纠正?
谢谢
答案 0 :(得分:2)
将Google maven添加到您的根build.gradle
中,如下所示:
allprojects {
repositories {
jcenter()
mavenCentral()
google()
}
}
答案 1 :(得分:0)
我遇到了一些问题,请尝试更改
compileSdkVersion 26到compileSdkVersion 28
,然后根据需要重新回到26