Add artist page

This commit is contained in:
Antonio Cappiello 2020-11-22 19:11:38 +01:00
parent 8b7e383dc2
commit c2be2711b9
44 changed files with 1028 additions and 191 deletions

View file

@ -36,27 +36,40 @@ android {
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation 'androidx.core:core-ktx:1.3.2'
// Jellyfin
implementation 'com.github.jellyfin.jellyfin-apiclient-java:android:0.7.7'
// Kotlin
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.4.10'
// AndroidX
implementation 'androidx.core:core-ktx:1.3.2'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation "androidx.coordinatorlayout:coordinatorlayout:1.1.0"
implementation 'pub.devrel:easypermissions:3.0.0'
implementation 'androidx.preference:preference-ktx:1.1.1'
implementation 'com.android.volley:volley:1.1.1'
implementation "com.paulrybitskyi.persistentsearchview:persistentsearchview:1.1.3"
implementation 'com.google.android.material:material:1.2.1'
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.1'
implementation 'androidx.navigation:navigation-ui-ktx:2.3.1'
implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation 'com.github.bumptech.glide:glide:4.11.0'
implementation "androidx.room:room-runtime:2.2.5"
implementation 'com.github.jellyfin.jellyfin-apiclient-java:android:0.7.7'
implementation "androidx.cardview:cardview:1.0.0"
implementation 'org.apache.commons:commons-lang3:3.11'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
// Android Material
implementation 'com.google.android.material:material:1.2.1'
// VolleyRequest
implementation 'com.android.volley:volley:1.1.1'
// SearchBar
implementation "com.paulrybitskyi.persistentsearchview:persistentsearchview:1.1.3"
// Permission
implementation 'pub.devrel:easypermissions:3.0.0'
// Glide
implementation 'com.github.bumptech.glide:glide:4.11.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
annotationProcessor "androidx.room:room-compiler:2.2.5"
testImplementation 'junit:junit:4.13.1'