Синтетика расширений kotlin не работает, когда я импортирую Android-ktx в Gradle - PullRequest
0 голосов
/ 11 октября 2018

Я пытаюсь протестировать некоторые функции Android Jetpack в моем проекте, у меня уже работает навигация.Когда я попытался импортировать android-ktx и перенести свои зависимости в androidx, мне удалось успешно синхронизировать gradle, но я потерял доступ к своей кнопке через синтетический.

Кто-нибудь имеет представление, что это может быть?

Мой Gradle:

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.qmakercorp.qmaker"
        minSdkVersion 22
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.support.test.runner.AndroidJUnitRunner"
    }

    androidExtensions {
        experimental = true
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71"
    implementation 'androidx.appcompat:appcompat:1.0.0'
    implementation 'com.google.android.material:material:1.0.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'

//    implementation 'com.android.support:appcompat-v7:28.0.0'
//    implementation 'com.android.support:design:28.0.0'
//    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
//    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
//    implementation 'com.android.support:support-v4:28.0.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.1.0-beta01'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-beta01'

    implementation "android.arch.navigation:navigation-fragment-ktx:1.0.0-alpha06"
    implementation "android.arch.navigation:navigation-ui-ktx:1.0.0-alpha06"
    androidTestImplementation 'androidx.test:rules:1.1.0-beta01' 

    implementation 'androidx.core:core-ktx:1.0.0'

Мой фрагмент:

Print from fragment

1 Ответ

0 голосов
/ 11 октября 2018

В вашем приложении build.gradle файл, который вы импортировали androidx.legacy:legacy-support-v4:1.0.0 и нажал Sync Now.После этого вы допустили ошибку, сказав Manifest merger failed : Attribute bla bla ..., и прокомментировали com.android.support:support-v4:28.0.0, но там не было показано Sync Now, и вы не синхронизировали свой проект с файлами Gradle.Таким образом, вы все еще можете использовать android.support.v4.app.Fragment из LoginFragment.Предложение: нажмите кнопку Sync Project with Gradle Files и замените import android.support.v4.app.Fragment на import androidx.fragment.app.Fragment.

...