VoicePlayHelper.java 231 B

123456789101112
  1. package com.atmob.voiceai.helper;
  2. import androidx.annotation.NonNull;
  3. public class VoicePlayHelper {
  4. private static String getFileName(@NonNull String url) {
  5. return url.substring(url.lastIndexOf("/") + 1);
  6. }
  7. }