-
Notifications
You must be signed in to change notification settings - Fork 263
version catalog added; onBackPressed() replaced. #96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
syslogic
wants to merge
22
commits into
android:main
Choose a base branch
from
syslogic:version-catalog
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
2c511b8
version catalog added; onBackPressed() replaced.
syslogic 8fe922c
version catalog added; plugins enabled.
syslogic e5467bd
version catalog added; plugins enabled.
syslogic e98c1e7
another version catalog added.
syslogic 8071e89
dependencies updated.
syslogic 7a7868a
another version catalog added.
syslogic a4b81b0
another version catalog added.
syslogic 8fe6d3a
version catalog updated.
syslogic 6ef287a
version catalog updated.
syslogic 5aaf5fa
loading file privileged_allowlist.json from assets.
syslogic 9b6edd9
instead using method getGPMPrivilegedAppAllowlist().
syslogic 7037cfc
package-name mapping distributed to all settings.gradle files.
syslogic 96bea72
version catalogs updated.
syslogic 2a181cc
deprecation message for retrieveBytes() added; the replacement method…
syslogic 95c8f6d
version catalog updated.
syslogic 9ebabf2
version catalog updated; deprecated PreferenceManager replaced.
syslogic 6e6f967
google services plugin added.
syslogic 618085d
deprecations fixed; except localbroadcastmanager.
syslogic 25da963
work-runtime added, to provide the missing intent-flag.
syslogic abe957d
k2 kapt enabled.
syslogic 28a1163
deprecation fixed.
syslogic ffcc316
dependencies updated.
syslogic File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
// Top-level build file where you can add configuration options common to all sub-projects/modules. | ||
plugins { | ||
alias(libs.plugins.android.application) apply false | ||
alias(libs.plugins.jetbrains.kotlin.android) apply false | ||
alias(libs.plugins.kotlin.compose.compiler) apply false | ||
alias(libs.plugins.kotlin.android) apply false | ||
alias(libs.plugins.devtools.ksp) apply false | ||
alias(libs.plugins.diffplug.spotless) apply false | ||
alias(libs.plugins.androidx.navigation.safeargs) apply false | ||
alias(libs.plugins.androidx.room) apply false | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,53 @@ | ||
[versions] | ||
agp = "8.4.0" | ||
ksp = "1.9.22-1.0.17" | ||
kotlin = "1.9.22" | ||
coreKtx = "1.12.0" | ||
junit = "4.13.2" | ||
junitVersion = "1.1.5" | ||
espressoCore = "3.5.1" | ||
lifecycleRuntime = "2.8.2" | ||
activityCompose = "1.9.0" | ||
composeBom = "2024.06.00" | ||
credentials = "1.5.0-alpha02" | ||
room = "2.6.1" | ||
biometrics = "1.2.0-alpha05" | ||
accompanist = "0.28.0" | ||
navigation = "2.7.7" | ||
|
||
[libraries] | ||
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" } | ||
junit = { group = "junit", name = "junit", version.ref = "junit" } | ||
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" } | ||
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" } | ||
androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycleRuntime" } | ||
androidx-lifecyle-runtime-compose = { group = "androidx.lifecycle", name = "lifecycle-runtime-compose", version.ref = "lifecycleRuntime" } | ||
androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activityCompose" } | ||
androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" } | ||
androidx-ui = { group = "androidx.compose.ui", name = "ui" } | ||
androidx-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" } | ||
androidx-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" } | ||
androidx-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" } | ||
androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" } | ||
androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" } | ||
androidx-material3 = { group = "androidx.compose.material3", name = "material3" } | ||
androidx-credential-manager = { group = "androidx.credentials", name = "credentials", version.ref = "credentials" } | ||
androidx-room-runtime = { group = "androidx.room", name = "room-runtime", version.ref = "room" } | ||
androidx-room-ktx = { group = "androidx.room", name = "room-ktx", version.ref = "room" } | ||
androidx-room-compiler = { group = "androidx.room", name = "room-compiler", version.ref = "room" } | ||
androidx-biometrics = { group = "androidx.biometric", name = "biometric", version.ref = "biometrics" } | ||
androidx-navigation = { group = "androidx.navigation", name = "navigation-compose", version.ref = "navigation" } | ||
google-accompanist = { group = "com.google.accompanist", name = "accompanist-systemuicontroller", version.ref = "accompanist" } | ||
|
||
android_gradle_plugin = '8.6.0' | ||
devtools_ksp = '2.0.20-1.0.25' | ||
google_accompanist = '0.28.0' | ||
kotlin = '2.0.20' | ||
ktlint = '1.0.1' | ||
junit = '4.13.2' | ||
diffplug_spotless = '6.25.0' | ||
androidx_core_ktx = '1.13.1' | ||
androidx_test_ext_junit = '1.2.1' | ||
androidx_test_espresso = '3.6.1' | ||
androidx_lifecycle = '2.8.5' | ||
androidx_activity_compose = '1.9.2' | ||
androidx_compose_bom = '2024.09.00' | ||
androidx_credentials = '1.5.0-alpha05' | ||
androidx_biometrics = '1.2.0-alpha05' | ||
androidx_navigation = '2.8.0' | ||
androidx_room = '2.6.1' | ||
|
||
|
||
[plugins] | ||
android-application = { id = "com.android.application", version.ref = "agp" } | ||
jetbrains-kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" } | ||
devtools-ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" } | ||
|
||
|
||
android_application = { id = "com.android.application", version.ref = "android_gradle_plugin" } | ||
kotlin_compose_compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" } | ||
kotlin_android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" } | ||
diffplug_spotless = { id = "com.diffplug.spotless", version.ref = "diffplug_spotless" } | ||
devtools_ksp = { id = "com.google.devtools.ksp", version.ref = "devtools_ksp" } | ||
androidx_room = { id = "androidx.room", version.ref = "androidx_room" } | ||
androidx_navigation_safeargs = { id = "androidx.navigation.safeargs", version.ref = "androidx_navigation" } | ||
|
||
[libraries] | ||
androidx_core_ktx = { group = "androidx.core", name = "core-ktx", version.ref = "androidx_core_ktx" } | ||
androidx_lifecycle_runtime_ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "androidx_lifecycle" } | ||
androidx_lifecycle_runtime_compose = { group = "androidx.lifecycle", name = "lifecycle-runtime-compose", version.ref = "androidx_lifecycle" } | ||
androidx_activity_compose = { group = "androidx.activity", name = "activity-compose", version.ref = "androidx_activity_compose" } | ||
androidx_compose_bom = { group = "androidx.compose", name = "compose-bom", version.ref = "androidx_compose_bom" } | ||
androidx_compose_ui = { group = "androidx.compose.ui", name = "ui" } | ||
androidx_compose_ui_graphics = { group = "androidx.compose.ui", name = "ui-graphics" } | ||
androidx_compose_ui_tooling = { group = "androidx.compose.ui", name = "ui-tooling" } | ||
androidx_compose_ui_tooling_preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" } | ||
androidx_compose_ui_test_manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" } | ||
androidx_compose_ui_test_junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" } | ||
androidx_compose_material3 = { group = "androidx.compose.material3", name = "material3" } | ||
androidx_credentials = { group = "androidx.credentials", name = "credentials", version.ref = "androidx_credentials" } | ||
androidx_room_runtime = { group = "androidx.room", name = "room-runtime", version.ref = "androidx_room" } | ||
androidx_room_ktx = { group = "androidx.room", name = "room-ktx", version.ref = "androidx_room" } | ||
androidx_room_compiler = { group = "androidx.room", name = "room-compiler", version.ref = "androidx_room" } | ||
androidx_biometrics = { group = "androidx.biometric", name = "biometric", version.ref = "androidx_biometrics" } | ||
androidx_navigation = { group = "androidx.navigation", name = "navigation-compose", version.ref = "androidx_navigation" } | ||
google_accompanist = { group = "com.google.accompanist", name = "accompanist-systemuicontroller", version.ref = "google_accompanist" } | ||
junit = { group = "junit", name = "junit", version.ref = "junit" } | ||
androidx_test_ext_junit = { group = "androidx.test.ext", name = "junit", version.ref = "androidx_test_ext_junit" } | ||
androidx_test_espresso_core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "androidx_test_espresso" } | ||
|
2 changes: 1 addition & 1 deletion
2
CredentialProvider/MyVault/gradle/wrapper/gradle-wrapper.properties
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Wed Mar 27 12:33:40 IST 2024 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.