#73: Remove jcenter repo from buildscript repos

This commit is contained in:
Ryan Harg 2021-08-06 11:32:26 +02:00
parent 078d38c1ba
commit db034a0615
No known key found for this signature in database
GPG Key ID: 89106F3A84E6958C
3 changed files with 3 additions and 8 deletions

View File

@ -50,10 +50,10 @@ android {
} }
lint { lint {
disable("MissingTranslation") disable += listOf("MissingTranslation","ExtraTranslation")
} }
compileSdkVersion(30) compileSdk = 30
defaultConfig { defaultConfig {

View File

@ -29,9 +29,6 @@
<string name="settings_night_mode_off">Always off (light mode)</string> <string name="settings_night_mode_off">Always off (light mode)</string>
<string name="settings_night_mode_system">Follow system settings</string> <string name="settings_night_mode_system">Follow system settings</string>
<string name="settings_night_mode_system_summary">Night mode will follow system settings</string> <string name="settings_night_mode_system_summary">Night mode will follow system settings</string>
<string name="settings_experiments">Enable experimental features</string>
<string name="settings_experiments_restart_title">Restart required</string>
<string name="settings_experiments_restart_content">Please kill and restart the app in order for this change to take effect</string>
<string name="settings_information">Information</string> <string name="settings_information">Information</string>
<string name="settings_information_repository_title">Repository</string> <string name="settings_information_repository_title">Repository</string>
<string name="settings_information_repository_description">Funkwhale for Android</string> <string name="settings_information_repository_description">Funkwhale for Android</string>
@ -119,11 +116,10 @@
<string name="settings_media_quality_size">Smallest size</string> <string name="settings_media_quality_size">Smallest size</string>
<string name="settings_media_cache_size_summary">%d GB will be used to store tracks for offline playback</string> <string name="settings_media_cache_size_summary">%d GB will be used to store tracks for offline playback</string>
<string name="settings_night_mode_off_summary">Light mode will always be on</string> <string name="settings_night_mode_off_summary">Light mode will always be on</string>
<string name="settings_experiments_description">Use at your own risks, may freeze or crash the app</string>
<string name="settings_crash_report_description">Only logs from the last 5 minutes before the crash will be collected</string> <string name="settings_crash_report_description">Only logs from the last 5 minutes before the crash will be collected</string>
<string name="alt_artist_art">Artist art</string> <string name="alt_artist_art">Artist art</string>
<string name="track_info_details_title">Track details</string> <string name="track_info_details_title">Track details</string>
<string name="radio_playback_error">There was an error while trying to play this radio</string> <string name="radio_playback_error">There was an error while trying to play this radio</string>
<string name="radio_random_description">Totally random picks, maybe you\'ll discover new things\?</string> <string name="radio_random_description">Totally random picks, maybe you\'ll discover new things\?</string>
<string name="playlist_add_to_create">Create playlist</string> <string name="playlist_add_to_create">Create playlist</string>
</resources> </resources>

View File

@ -3,7 +3,6 @@ buildscript {
repositories { repositories {
google() google()
mavenCentral() mavenCentral()
jcenter()
gradlePluginPortal() gradlePluginPortal()
} }