Skip to content

Commit

Permalink
dependencies updated; TOOD: tests are still broken.
Browse files Browse the repository at this point in the history
  • Loading branch information
syslogic committed Jul 23, 2024
1 parent 7e1fd4f commit 96c86aa
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@ junit = '4.13.2'
flexbox = '3.0.0'
# Note: DirCacheCheckout.java uses InputStream.transferTo() since jgit 6.3; no such method on Android.
jgit = '6.2.0.202206071550-r'
slf4j = '2.0.9'
slf4j = '2.0.13'
androidx_appcompat = '1.7.0'
androidx_annotation = '1.8.0'
androidx_navigation = '2.7.7'
androidx_fragment = '1.7.1'
androidx_fragment = '1.8.1'
androidx_recyclerview = '1.3.2'
androidx_cardview = '1.0.0'
androidx_preference = '1.2.1'
androidx_room = '2.6.1'
androidx_splashscreen = '1.0.1'
androidx_test_junit = '1.1.5'
androidx_test_core = '1.5.0'
androidx_test_rules = '1.5.0'
androidx_test_runner = '1.5.2'
androidx_test_monitor = '1.6.1'
androidx_test_junit = '1.2.1'
androidx_test_core = '1.6.1'
androidx_test_rules = '1.6.1'
androidx_test_runner = '1.6.1'
androidx_test_monitor = '1.7.1'
androidx_test_uiautomator = '2.3.0'
androidx_test_espresso = '3.5.1'
androidx_test_espresso = '3.6.1'

[plugins]
android_application = { id = "com.android.application", version.ref = "android_gradle_plugin" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ private static String loadTokenFromPackageMeta(@NonNull Activity activity, Accou
}

if (mDebug && app.metaData.keySet().contains("com.github.ACCESS_TOKEN")) {
Log.d(LOG_TAG, "loading access token from meat-data: " + Constants.ACCOUNT_TYPE);
Log.d(LOG_TAG, "loading access token from meta-data: " + Constants.ACCOUNT_TYPE);
token = app.metaData.getString("com.github.ACCESS_TOKEN");
if (token != null && !token.equals("null")) {

Expand Down Expand Up @@ -184,4 +184,4 @@ public static Account addAccount(AccountManager accountManager, String username,
}
return null;
}
}
}

0 comments on commit 96c86aa

Please sign in to comment.