Well, that worked perfectly ... I updated the Android Studio and now it does not work.
I see errors in build, Run tasks .. and I have no idea what it is or how to solve it
This is an image of what I see
I also see that in one of my Activitys I get the "R" in red, here:
import static com.android.rodry.chistes.R.id.activity_showchistes;
here:
setContentView(R.layout.activity_showchistes);
and here:
textView.setBackgroundColor(getResources().getColor(R.color.BrackgroundChistes));
I also see some Warnings on the Sync tab:
My build.gradle dependencies:
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
implementation 'com.android.support:appcompat-v7:24.2.1'
testImplementation 'junit:junit:4.12'
}