我在 kotlin 版本 1.3.41 的 kotlin 项目中遇到一个问题,未解决的
参考:我无法找出为什么会出现这个问题?我也降级了 kotlin 版本,但没有效果。
当我运行它时,我收到错误:
- 未解决的参考:READ_EXTERNAL_STORAGE
- 未解决的参考:棒棒糖
- 未解决的参考: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'
}
}
}
}