parent
81faf3f7ee
commit
b98cc8ed79
|
@ -40,8 +40,8 @@ android {
|
|||
applicationId "kr.co.vividnext.sodalive"
|
||||
minSdk 23
|
||||
targetSdk 33
|
||||
versionCode 92
|
||||
versionName "1.14.1"
|
||||
versionCode 95
|
||||
versionName "1.15.0"
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
|
|
|
@ -6,10 +6,14 @@ import android.media.AudioAttributes
|
|||
import android.media.MediaPlayer
|
||||
import android.net.Uri
|
||||
import android.widget.Toast
|
||||
import com.google.gson.annotations.SerializedName
|
||||
import kr.co.vividnext.sodalive.audio_content.AudioContentPlayService
|
||||
import java.io.IOException
|
||||
|
||||
data class CreatorCommunityContentItem(val contentId: Long, val url: String)
|
||||
data class CreatorCommunityContentItem(
|
||||
@SerializedName("contentId") val contentId: Long,
|
||||
@SerializedName("url") val url: String
|
||||
)
|
||||
|
||||
class CreatorCommunityMediaPlayerManager(
|
||||
private val context: Context,
|
||||
|
|
|
@ -85,7 +85,7 @@ class RecordingVoiceFragment : BottomSheetDialogFragment() {
|
|||
}
|
||||
binding.ivRecordStart.setOnClickListener {
|
||||
fileNameMedia = requireActivity().filesDir.path +
|
||||
"/record_community_voice_${System.currentTimeMillis()}.m4a"
|
||||
"/now_voice_${System.currentTimeMillis()}.m4a"
|
||||
|
||||
val fileMedia = File(fileNameMedia)
|
||||
if (!fileMedia.exists()) {
|
||||
|
|
|
@ -20,7 +20,8 @@
|
|||
android:layout_above="@+id/ll_tab"
|
||||
android:background="@color/color_222222"
|
||||
android:paddingHorizontal="13.3dp"
|
||||
android:paddingVertical="10.7dp">
|
||||
android:paddingVertical="10.7dp"
|
||||
android:visibility="gone">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_cover"
|
||||
|
|
Loading…
Reference in New Issue