ANDROID APP

Android Render Structure Downside as a consequence of android sdk 28 or appcompat-v7:28.0.0-rc01



Unable to resolve dependency for ‘:app@debug/compileClasspath’: Couldn’t resolve com.android.help:appcompat-v7:28.0.0-rc01

That is how your Gradle Ought to look.

apply plugin: ‘com.android.software’

android {
compileSdkVersion 27
defaultConfig {
applicationId “funds.banamex.citi.com.banamexpayments”
minSdkVersion 17
targetSdkVersion 27
versionCode 1
versionName “1.0”
testInstrumentationRunner “android.help.take a look at.runner.AndroidJUnitRunner”
}
buildTypes {
launch {
minifyEnabled false
proguardFiles getDefaultProguardFile(‘proguard-android.txt’), ‘proguard-rules.professional’
}
}
}

dependencies {
implementation fileTree(dir: ‘libs’, embody: [‘*.jar’])
implementation ‘com.android.help:appcompat-v7:28.0.0-rc01’
implementation ‘com.android.help.constraint:constraint-layout:1.1.2’
testImplementation ‘junit:junit:4.12’
androidTestImplementation ‘com.android.help.take a look at:runner:1.0.2’
androidTestImplementation ‘com.android.help.take a look at.espresso:espresso-core:3.0.2’
}

In case you have some other working (not error) Android Studio Venture,

You may verify the settings of construct.gradle underneath your Venture – app and search for this line:

implementation ‘com.android.help:appcompat-v7:***’
Is your working SDK model in your working challenge, then exchange your

implementation ‘com.android.help:appcompat-v7:28.0.0-rc01’
with the working SDK model

if you have no working (with out error) challenge, you possibly can strive mine:

implementation ‘com.android.help:appcompat-v7:28.0.0-alpha3’
Hopefully this will remedy your downside, as a result of it solved mine simply now.

source