diff options
author | ByteHamster <ByteHamster@users.noreply.github.com> | 2024-03-10 08:02:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-10 08:02:34 +0100 |
commit | 393a8cebd3f26b6a1edae71f33e25d5c9cf42ded (patch) | |
tree | df69719b2cee6ecb12dd17f360f29e5e9487cabf /ui/statistics | |
parent | b18e5f0de61bff72a2fc60910418769f7de145e9 (diff) | |
download | AntennaPod-393a8cebd3f26b6a1edae71f33e25d5c9cf42ded.zip |
Remove last few usages of Iconify (#6977)
Diffstat (limited to 'ui/statistics')
-rw-r--r-- | ui/statistics/build.gradle | 2 | ||||
-rw-r--r-- | ui/statistics/src/main/res/layout/feed_statistics.xml | 12 |
2 files changed, 6 insertions, 8 deletions
diff --git a/ui/statistics/build.gradle b/ui/statistics/build.gradle index 7dafcba55..f49b98a4e 100644 --- a/ui/statistics/build.gradle +++ b/ui/statistics/build.gradle @@ -27,6 +27,4 @@ dependencies { implementation "com.github.bumptech.glide:glide:$glideVersion" implementation "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion" implementation "io.reactivex.rxjava2:rxjava:$rxJavaVersion" - implementation "com.joanzapata.iconify:android-iconify-fontawesome:$iconifyVersion" - implementation "com.joanzapata.iconify:android-iconify-material:$iconifyVersion" } diff --git a/ui/statistics/src/main/res/layout/feed_statistics.xml b/ui/statistics/src/main/res/layout/feed_statistics.xml index 78630758f..02afb0161 100644 --- a/ui/statistics/src/main/res/layout/feed_statistics.xml +++ b/ui/statistics/src/main/res/layout/feed_statistics.xml @@ -14,7 +14,7 @@ android:layout_weight="1" android:text="@string/statistics_episodes_started_total" /> - <com.joanzapata.iconify.widget.IconTextView + <TextView android:id="@+id/startedTotalLabel" android:layout_width="match_parent" android:layout_height="wrap_content" @@ -34,7 +34,7 @@ android:layout_weight="1" android:text="@string/statistics_time_played" /> - <com.joanzapata.iconify.widget.IconTextView + <TextView android:id="@+id/timePlayedLabel" android:layout_width="match_parent" android:layout_height="wrap_content" @@ -55,7 +55,7 @@ android:layout_weight="1" android:text="@string/statistics_total_duration" /> - <com.joanzapata.iconify.widget.IconTextView + <TextView android:id="@+id/totalDurationLabel" android:layout_width="match_parent" android:layout_height="wrap_content" @@ -75,7 +75,7 @@ android:layout_weight="1" android:text="@string/statistics_episodes_on_device" /> - <com.joanzapata.iconify.widget.IconTextView + <TextView android:id="@+id/onDeviceLabel" android:layout_width="match_parent" android:layout_height="wrap_content" @@ -95,7 +95,7 @@ android:layout_weight="1" android:text="@string/statistics_space_used" /> - <com.joanzapata.iconify.widget.IconTextView + <TextView android:id="@+id/spaceUsedLabel" android:layout_width="match_parent" android:layout_height="wrap_content" @@ -115,7 +115,7 @@ android:layout_weight="1" android:text="@string/statistics_expected_next_episode" /> - <com.joanzapata.iconify.widget.IconTextView + <TextView android:id="@+id/expectedNextEpisodeLabel" android:layout_width="match_parent" android:layout_height="wrap_content" |