Skip to content

Commit 96c86aa

Browse files
committed
dependencies updated; TOOD: tests are still broken.
1 parent 7e1fd4f commit 96c86aa

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

gradle/libs.versions.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,23 @@ junit = '4.13.2'
88
flexbox = '3.0.0'
99
# Note: DirCacheCheckout.java uses InputStream.transferTo() since jgit 6.3; no such method on Android.
1010
jgit = '6.2.0.202206071550-r'
11-
slf4j = '2.0.9'
11+
slf4j = '2.0.13'
1212
androidx_appcompat = '1.7.0'
1313
androidx_annotation = '1.8.0'
1414
androidx_navigation = '2.7.7'
15-
androidx_fragment = '1.7.1'
15+
androidx_fragment = '1.8.1'
1616
androidx_recyclerview = '1.3.2'
1717
androidx_cardview = '1.0.0'
1818
androidx_preference = '1.2.1'
1919
androidx_room = '2.6.1'
2020
androidx_splashscreen = '1.0.1'
21-
androidx_test_junit = '1.1.5'
22-
androidx_test_core = '1.5.0'
23-
androidx_test_rules = '1.5.0'
24-
androidx_test_runner = '1.5.2'
25-
androidx_test_monitor = '1.6.1'
21+
androidx_test_junit = '1.2.1'
22+
androidx_test_core = '1.6.1'
23+
androidx_test_rules = '1.6.1'
24+
androidx_test_runner = '1.6.1'
25+
androidx_test_monitor = '1.7.1'
2626
androidx_test_uiautomator = '2.3.0'
27-
androidx_test_espresso = '3.5.1'
27+
androidx_test_espresso = '3.6.1'
2828

2929
[plugins]
3030
android_application = { id = "com.android.application", version.ref = "android_gradle_plugin" }

mobile/src/main/java/io/syslogic/github/network/TokenHelper.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ private static String loadTokenFromPackageMeta(@NonNull Activity activity, Accou
104104
}
105105

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

@@ -184,4 +184,4 @@ public static Account addAccount(AccountManager accountManager, String username,
184184
}
185185
return null;
186186
}
187-
}
187+
}

0 commit comments

Comments
 (0)