1. edge to edge 2. se quitan imagenes y audios del perfil 3. se quita markdown de posts 4. se agrega pantalla de licencias 5. se agrega soporte para dar clic en hashtags 6. pantalla de hashtags ahora es una actividad 7. se comienza a implementar nuevo flujo de imagenes
14 lines
410 B
Kotlin
14 lines
410 B
Kotlin
package com.isolaatti.common
|
|
|
|
import com.isolaatti.audio.common.domain.Audio
|
|
|
|
interface OnUserInteractedWithPostCallback : OnUserInteractedCallback {
|
|
fun onLiked(postId: Long)
|
|
fun onUnLiked(postId: Long)
|
|
fun onComment(postId: Long)
|
|
fun onOpenPost(postId: Long)
|
|
fun onPlay(audio: Audio)
|
|
fun onMoreInfo(postId: Long)
|
|
fun onShare(postId: Long)
|
|
fun hashtagClicked(hashtag: String)
|
|
} |