В моем проекте kotlin с версией 1.3.41 есть проблема, которая
Неразрешенная ссылка: я не могу выяснить, почему эта проблема возникает ?. Я также понижаю версию kotlin, но безрезультатно.
Когда я запускаю его, я получаю ошибки:
- Неразрешенная ссылка: READ_EXTERNAL_STORAGE
- Неразрешенная ссылка: LOLLIPOP
- Неразрешенная ссылка: statusBarColor
- Неразрешенная ссылка: PROVIDERS_CHANGED_ACTION
- Неразрешенная ссылка: finishAffinity
- Неразрешенная ссылка: PROVIDERS_CHANGED_ACTION
- Неразрешенная ссылка: finishAffinity
- Неразрешенная ссылка: FLAG_ACT_AL_TAL 10_CLE_TAL_TAL_TAL_RAL_TAL_TAL_RAL_TAL_RAL_TAL_RAL_RAL_TAL_RAL_RAL_RAC_RAL_RAL_RAL_RAC_RAL_RAT_RAL_RAL_RAT_RAL_RAL_RAT_RAL_RAD*
- Неразрешенная ссылка: 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'
}
}
}
}