不在哪里,我的项目会显示消息
Gradle files have changed since last project sync. A project sync might be necessary for the IDE to work properly
使用后面的“立即同步”链接。 (虽然我没有编辑gradle文件)
但是,无论我现在点击同步多少次,重建项目或创建它,它只会再次显示相同的消息,并显示:
Grade build finished in 3s ...etc
当我检查日志时,它只是说Gradle sync已完成。 我也无法运行项目,因为它只显示了目标设备,就是这样。
我还试图删除不影响
的.idea文件夹编辑: 我的build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.evently.pianomar.evently"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
packagingOptions {
exclude 'META-INF/LICENSE.txt'
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.android.support:design:23.3.0'
compile 'com.android.support:support-v4:23.3.0'
compile 'com.squareup.retrofit2:retrofit:2.0.0'
compile 'com.squareup.retrofit2:converter-gson:2.0.0'
compile 'org.glassfish:javax.annotation:10.0-b28'
compile 'joda-time:joda-time:2.9.2'
}
答案 0 :(得分:0)
我也有类似的问题,这就是我如何解决它:我注意到我的时间和日期不正确,所以我更新了它们,然后重建项目并且它有效!