出于某种原因,我修改了PC的日期(当前日期-2),此后,我遇到了Gradle同步过程中的问题。同步消息多少次都没关系
自上次项目同步以来,Gradle文件已更改。项目同步 IDE可能需要正常工作
一次又一次弹出。我试图应用其他堆栈溢出解决方案,即
更正我的时间,日期和时区,清理并重建 项目,甚至删除.gitignore文件中提到的文件 (位于项目根目录中)我能够找到的文件 然后再次建造,但无济于事。 也许我在遵循解决方案时缺少一些东西。
如果有人可以帮助我,我真的很感激。
This is how I have adjusted my time and date.
这是我的顶级build.gradle文件
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.google.gms:google-services:3.1.0'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
这是我的应用程序级别的build.gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.biji.riderapp"
minSdkVersion 15
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.google.firebase:firebase-database:11.0.4'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-
core:3.0.1'
implementation 'com.android.support:recyclerview-v7:26.1.0'
}
apply plugin: 'com.google.gms.google-services'