This commit updates several dependencies to their latest versions and resolves all outstanding warnings in the project. The encryption functionality is now fully integrated and up-to-date. - Updated dependencies: - junit-version from 1.2.1 to 1.3.0 - core-ktx from 1.13.1 to 1.17.0 - material-icons-extended from 1.7.7 to 1.7.8 - material from 1.12.0 to 1.13.0 - Suppressed UnstableApiUsage warning in settings.gradle.kts. - Removed unused imports in AppViewModelProvider.kt.
27 lines
627 B
Kotlin
27 lines
627 B
Kotlin
@file:Suppress("UnstableApiUsage")
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url = java.net.URI("https://jitpack.io") }
|
|
}
|
|
}
|
|
|
|
rootProject.name = "noteshop"
|
|
include(":app")
|