我正在尝试更新我的应用以请求WRITE_EXTERNAL_STORAGE和READ_EXTERNAL_STORAGE的运行时权限(使用最新的Android版本,我无法再访问/ storage / emulated / 0文件夹)。 下面的代码给出了一个错误“无法解析符号ContextCompat”,通过阅读其他线程,我理解这需要我将android-support-v4.jar添加到我的项目中。
private boolean checkPermission() {
return ContextCompat.checkSelfPermission(this, WRITE_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED
&& ContextCompat.checkSelfPermission(this, READ_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED
;
}
问题是此库不在我的SDK文件夹中,并且未在Android Studio(v3.0.1)的SDK工具选项卡中列出。谁能告诉我如何/在哪里下载这个库,以便它可以添加到我的项目中?
我的build.gradle看起来像这样:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion '26.0.2'
defaultConfig {
applicationId "com.ioxis.ian.pcphotoupload2"
minSdkVersion 15
targetSdkVersion 23
versionCode 66
versionName "3.22"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
// debug {
// applicationIdSuffix ".debug"
// debuggable true
// }
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'jcifs:jcifs:1.3.17'
compile files('libs/gson-2.3.1.jar')
compile files('libs/logback-android-1.1.1-3.jar')
compile files('libs/slf4j-api-1.7.6.jar')
compile 'com.google.android.gms:play-services:8.4.0'
compile 'com.android.support:appcompat-v7:23.1.0'
compile 'com.android.support:design:23.1.0'
compile 'com.android.support:support-v4:23.1.0'
}
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}