Пустые TextViews в CardViews при сборке релиза - PullRequest
0 голосов
/ 31 октября 2019

Мое приложение компилируется без ошибок как при выпуске, так и при отладке. Работает абсолютно идеально в отладке, но когда я собираю для Play Store (релиз), мои RecyclerViews выглядят так: Скриншот RecyclerView

Кроме того, когда я нажимаю любую карту, чтобы редактировать ее, TextViews в редактированииэкран остается пустым также. Что может вызвать такое поведение?

app> build.gradle:

apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-Плагин расширений "apply": org.jetbrains.kotlin.android.extensions

check.dependsOn 'assemblyDebugAndroidTest'

android {
    compileSdkVersion 28

    defaultConfig {
        applicationId "com.myapp"
        minSdkVersion 26
        targetSdkVersion 28
        versionCode 3
        versionName "3.0"
        multiDexEnabled true
        testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
    }

    buildTypes {
        release {
            minifyEnabled true
            //proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            signingConfig signingConfigs.debug
            lintOptions {
                checkReleaseBuilds false
            }
        }
    }
}

configurations.all {
    resolutionStrategy.force 'com.android.support:support-annotations:28.0.0'
}

androidExtensions {
    experimental = true
}

dependencies {
    implementation 'com.google.firebase:firebase-core:17.2.1'
    implementation 'com.google.firebase:firebase-inappmessaging-display:19.0.1'
    implementation project(":internal:lintchecks")
    implementation project(":internal:chooser")
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.50"
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.recyclerview:recyclerview:1.0.0'
    implementation 'androidx.cardview:cardview:1.0.0'
    implementation 'com.google.android.material:material:1.0.0'
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'com.firebaseui:firebase-ui-database:4.3.2'
    implementation 'com.google.firebase:firebase-core:17.2.1'
    implementation 'com.google.firebase:firebase-auth:19.1.0'
    implementation 'com.google.firebase:firebase-database:19.2.0'
    implementation 'androidx.arch.core:core-runtime:2.1.0'

    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
    androidTestImplementation 'androidx.test:rules:1.2.0'
    androidTestImplementation 'androidx.test:runner:1.2.0'
}

apply plugin: 'com.google.gms.google-services'  // Google Play services Gradle plugin

1 Ответ

0 голосов
/ 31 октября 2019

набор minifyEnabled в false

android {

//...

  buildTypes {
      release {
          minifyEnabled false

          //...   
      }
  }
}
...