У меня проблемы с приложением после внедрения библиотеки biometri c из androidx на устройство с Android 7. Проблемы начались в моем основном приложении при изменении размера шрифта в настройках доступности телефона и текста Размер в приложении не изменился. После определения проблемы я создал фиктивное приложение с одним действием «hello world» и обнаружил, что даже только объявив зависимость библиотеки в app.gradle, воспроизводит ошибку. Это xml:
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textSize="16sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
И это build.gradle:
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.fontscaletestapplication"
minSdkVersion 23
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation "androidx.biometric:biometric:1.0.1"
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.core:core-ktx:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}
Стоит упомянуть, что если я удалю зависимость для androidx biometri c, масштабирование шрифта работает без проблем, но как только я добавляю зависимость, изменение размера шрифта не влияет на размер шрифта в приложении.
Из того, что я заметил в основном приложении, я думаю, что оно как-то связано с контекстом приложения и ресурсами приложения, но я не могу понять, в чем проблема. Я проверил на HT C 10 с Android 7 и на эмуляторе с API 24. Стоит отметить, что масштабирование шрифта работает на Android 9 и 10.
Есть ли что-то, что я пропал?
Спасибо.