Не удается найти символ R при обновлении до Android 3.1.3
Вчера я обновил Android до Android 3.1.3, все было довольно хорошо до тех пор, пока сегодня, когда я создал новую Пустую активность и в "AppCompatActivity", я не обнаружил ошибку "не могу найти символ", так что я искал и прочитал, что у него что-то есть делать с "build.gradle", поэтому я обновлял библиотеки и получал разные ошибки, последняя из которых - то, что объект "R" не может разрешить символ. Итак, вот что у меня есть.
У меня было много попыток решить эту проблему (как вы можете видеть комментарии в коде), но до сих пор я не решил ее. Помогите мне, пожалуйста!
Также в одном разделе Android предложил мне изменить значение gradle.properties # org.gradle.parallel = true с false, и это тоже не сработало.
build.gradle
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.3'
//classpath 'com.android.tools.build:gradle:2.1.3'
//classpath 'com.android.tools.build:gradle:3.2.0-alpha17'
//classpath 'com.android.tools.build:gradle:3.1.3'
//classpath 'com.google.gms:google-services:3.2.0'
//classpath 'com.android.tools.build:gradle:3.1.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
//name 'Google'
}
}
}
dependecies
android {
compileSdkVersion 23
buildToolsVersion '24.0.2'
defaultConfig {
applicationId "com.example.dell.getspeed"
minSdkVersion 14
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
//compile 'com.google.android.gms:play-services:8.3.0'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
compile 'com.android.support:support-v4:23.4.0'
compile 'org.jbundle.util.osgi.wrapped:org.jbundle.util.osgi.wrapped.org.apache.http.client:4.1.2'
compile 'net.gotev:uploadservice:2.1'
compile 'com.mcxiaoke.volley:library-aar:1.0.1'
compile 'com.google.android.gms:play-services-maps:9.8.0'
compile 'com.android.support:cardview-v7:23.4.0'
compile 'com.android.support:recyclerview-v7:23.4.0'
/*implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
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.constraint:constraint-layout:1.1.2'
//implementation 'com.android.support:appcompat-v7:27.1.0'
//implementation 'com.android.support:design:26.4.0'
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:25.4.0'
compile 'com.github.anastr:speedviewlib:1.2.0'
compile 'com.android.support:design:25.4.0'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
//compile 'com.android.support.constraint:constraint-layout:1.1.2'*/
}
gralde-wrapper.propierties
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
#distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
#distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
ЛОГИ: Логи
3 ответа
Закройте проект и импортируйте его снова. Работал на меня сегодня.
ИЛИ ЖЕ
По некоторым причинам, эти атрибуты больше не найдены в 26 библиотеках. Для увеличения этих библиотек вы также должны увеличить свой compileSdk до 27. Возможно, вам также придется скачать SDK 27
Короткая версия, следующая идет на приложение `graddle``
менять compile
в implementation
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "cl.cutiko.testingupdate"
minSdkVersion 21
targetSdkVersion 27
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:27.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.android.support:design:27.1.0'
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'
}
build.gradle (проект)
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Закройте текущий проект, снова откройте его и пересоберите решение. Большую часть времени, перестраивая решение, проблема "R не может решить" может быть решена.
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
classpath 'com.android.tools.build:gradle:3.1.3'
compileSdkVersion 27
minSdkVersion 16
targetSdkVersion 27
implementation 'com.android.support:appcompat-v7:23.4.0'
implementation 'com.android.support:design:23.4.0'
implementation 'com.android.support:support-v4:23.4.0'
implementation 'com.android.support:recyclerview-v7:23.4.0'
Файл - Неверный кэш / перезапуск - Неверный и перезапуск