Kotlin未解析的参考:READ_EXTERNAL_STORAGE,LOLLIPOP,未解析的参考:FLAG_ACTIVITY_CLEAR_TASK

问题描述 投票:0回答:1

我在Kotlin项目中遇到了Kotlin版本1.3.41的问题,尚未解决的参考资料:我无法找出为什么会出现此问题?我也降级了Kotlin版本,但没有效果。

当我运行它时,我收到错误消息:

  • 未解决的参考:READ_EXTERNAL_STORAGE
  • 未解决的参考:LOLLIPOP
  • 未解决的参考:statusBarColor
  • 未解决的参考:PROVIDERS_CHANGED_ACTION
  • 未解决的参考:finishAffinity
  • 未解决的参考:PROVIDERS_CHANGED_ACTION
  • 未解决的参考:finishAffinity
  • 未解决的参考:FLAG_ACTIVITY_CLEAR_TASK
  • 未解决的参考:O
  • 未解决的参考:IMPORTANCE_HIGH
  • 未解决的参考:createNotificationChannel

任何人都可以为我解释为什么会这样并解决它,谢谢

    private fun requestReadWritePermissions() {
        TedPermission.with(this@ActivityChooseDocuments)
                .setPermissionListener(this)
                .setDeniedMessage(context!!.getString(R.string.permission_text))
                .setPermissions(READ_EXTERNAL_STORAGE,WRITE_EXTERNAL_STORAGE,CAMERA)
                .check()
    }

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {}




# Project label gradle #
    buildscript {
    ext.kotlin_version = '1.3.10'
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.0'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.10"
        classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
        classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
        classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
        classpath 'com.google.gms:google-services:4.3.2'
        classpath "org.jetbrains.kotlin:kotlin-android extensions:$kotlin_version"
    }
    }
    allprojects {
    repositories {
        google()
        jcenter()
        maven { url "https://jitpack.io" }
    }
    }
    task clean(type: Delete) {
    delete rootProject.buildDir
    }

# App label gradle #
    apply plugin: 'com.android.application'
    apply plugin: 'kotlin-android'
    apply plugin: 'kotlin-android-extensions'
    apply plugin: 'kotlin-kapt'

    android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.rahman.kotlintaxi"
        minSdkVersion 17
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    defaultConfig {
        multiDexEnabled true
    }
    dataBinding {
        enabled = true
    }
    allprojects {
        repositories {
            maven { url 'https://jitpack.io' }
            maven { url "https://s3.amazonaws.com/repo.commonsware.com" }
            maven { url 'https://maven.fabric.io/public' }
            jcenter()
        }
    }

    lintOptions {
        abortOnError false
    }
    androidExtensions {
        experimental = false
    }
    }

    dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"

    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.2.0'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
    implementation 'androidx.core:core-ktx:1.1.0'
    implementation "org.jetbrains.anko:anko-commons:0.10.1"

    }
    apply plugin: 'com.google.gms.google-services'

    configurations.all {
    resolutionStrategy.eachDependency { DependencyResolveDetails details ->
        def requested = details.requested
        if (requested.group == 'com.android.support') {
            if (!requested.name.startsWith("multidex")) {
                details.useVersion '28.0.0'
            }
        }

    }
    }
android android-studio kotlin kotlin-android-extensions android-gradle-plugin-3.3.0
1个回答
0
投票

不要只使用READ_EXTERNAL_STORAGE。像这样使用Manifest.permission.READ_EXTERNAL_STORAGE

© www.soinside.com 2019 - 2024. All rights reserved.