RavenEXP
Lurker
So I installed Android Studio 3.1.3
Then I created a new Basic Activity
And when the project was build I faced these 4 errors:
https://imgur.com/a/ptL8ARY
Please someome explain how to fix them.
Edit: I changed the SDK from 28 to 27 and everything works fine now.
Here is how to do it:
In build.gradle(Module app) change
compileSdkVersion 28
targetSdkVersion 28
To
compileSdkVersion 27
targetSdkVersion 27
And chnge the dependencies version to:
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
Special thanks to StackOverflow user: Geraldo Neto
Then I created a new Basic Activity
And when the project was build I faced these 4 errors:
https://imgur.com/a/ptL8ARY
Please someome explain how to fix them.
Edit: I changed the SDK from 28 to 27 and everything works fine now.
Here is how to do it:
In build.gradle(Module app) change
compileSdkVersion 28
targetSdkVersion 28
To
compileSdkVersion 27
targetSdkVersion 27
And chnge the dependencies version to:
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
Special thanks to StackOverflow user: Geraldo Neto
Last edited:
. Perhaps someone else here can suggest something?