I have updated android studio to 2.3. I have searched and applied all the solutions given on this forum but my problem still not solved. compile 'com.android.support:appcompat-v7:25.3.0' This library dependency show error
//Here is my build.gradle file
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.compass.islamicdirection"
minSdkVersion 14
targetSdkVersion 25
versionCode 1
versionName "1.0"
multiDexEnabled true
}
dexOptions {
javaMaxHeapSize "4g"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:25.3.0'
compile 'com.google.android.gms:play-services:10.2.0'
compile 'com.android.support:multidex:1.0.1'
compile files('libs/StartAppInApp-3.5.2.jar')
}