我正在开发一个与github同步的项目。一切都很好,直到我与github同步。尝试清理项目,重建项目,使缓存无效,使用Gradle文件同步项目。没有任何效果。 enter image description here
这是我的gradle文件: 这是gradle app模块
buildscript {
repositories {
mavenCentral()
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 25
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "uz.kun.app"
minSdkVersion 15
targetSdkVersion 25
versionCode 61
versionName "3.0.37"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
lintOptions {
checkReleaseBuilds false
}
}
dataBinding {
enabled = true
}
useLibrary 'org.apache.http.legacy'
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
testImplementation 'junit:junit:4.12'
implementation files('libs/universal-image-loader-1.9.5.jar')
//noinspection GradleCompatible
implementation 'com.android.support:customtabs:25.0.1'
implementation 'com.android.support:appcompat-v7:25.0.1'
implementation 'com.android.support:design:25.0.1'
implementation 'com.android.support:cardview-v7:25.0.1'
implementation 'com.android.support:recyclerview-v7:25.0.1'
implementation 'com.j256.ormlite:ormlite-android:4.48'
implementation 'com.j256.ormlite:ormlite-core:4.48'
implementation 'com.google.code.gson:gson:2.3.1'
implementation 'com.github.ksoichiro:android-observablescrollview:1.6.0'
implementation 'kr.pe.burt.android.lib:androidgradientimageview:0.0.2'
implementation 'com.squareup.okhttp3:okhttp:3.4.1'
implementation 'com.squareup.okhttp3:logging-interceptor:3.4.1'
implementation 'com.hejunlin.superindicatorlibray:superindicatorlibray:1.0.3'
implementation 'com.google.firebase:firebase-messaging:10.0.1'
implementation 'com.google.android.gms:play-services-analytics:10.0.1'
implementation('com.crashlytics.sdk.android:crashlytics:2.6.5@aar') {
transitive = true;
}
implementation 'com.facebook.android:facebook-android-sdk:4.18.0'
implementation 'com.squareup.retrofit2:converter-gson:2.3.0'//retrofit
implementation 'com.squareup.retrofit2:retrofit:2.3.0'
implementation 'com.google.dagger:dagger:2.11'
implementation 'com.google.dagger:dagger-android:2.11'
annotationProcessor 'com.google.dagger:dagger-android-processor:2.11'
annotationProcessor 'com.google.dagger:dagger-compiler:2.11'
}
// Add to the bottom of the file
apply plugin: 'com.google.gms.google-services'
Gradle Project
// Top-level build file where you can add configuration options common to
all sub-projects/modules.
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0'
// Add this line
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()
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}