gpt4 book ai didi

android - Kotlin Unresolved reference : READ_EXTERNAL_STORAGE, LOLLIPOP, Unresolved reference :FLAG_ACTIVITY_CLEAR_TASK

转载 作者:行者123 更新时间:2023-11-30 05:01:33 26 4
gpt4 key购买 nike

我在使用 kotlin 版本 1.3.41 的 kotlin 项目中遇到问题
Unresolved reference :我无法找出为什么会出现该问题?。我也降级了 kotlin 版本但没有效果。

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

  • Unresolved reference :READ_EXTERNAL_STORAGE
  • Unresolved reference :LOLLIPOP
  • Unresolved reference :statusBarColor
  • Unresolved reference :PROVIDERS_CHANGED_ACTION
  • Unresolved reference :finishAffinity
  • Unresolved reference :PROVIDERS_CHANGED_ACTION
  • Unresolved reference :finishAffinity
  • Unresolved reference :FLAG_ACTIVITY_CLEAR_TASK
  • Unresolved reference :O
  • Unresolved reference :IMPORTANCE_HIGH
  • Unresolved reference :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'
}
}

}
}

最佳答案

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

关于android - Kotlin Unresolved reference : READ_EXTERNAL_STORAGE, LOLLIPOP, Unresolved reference :FLAG_ACTIVITY_CLEAR_TASK,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58167529/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com