removing an unused function
This commit is contained in:
parent
3c01abb2c3
commit
81c9a0e6d1
3 changed files with 2 additions and 36 deletions
|
@ -7,8 +7,6 @@ import android.hardware.usb.UsbManager
|
|||
import android.media.MediaScannerConnection
|
||||
import android.net.Uri
|
||||
import android.os.Environment
|
||||
import android.os.Handler
|
||||
import android.os.Looper
|
||||
import android.provider.DocumentsContract
|
||||
import android.provider.MediaStore
|
||||
import android.text.TextUtils
|
||||
|
@ -387,38 +385,6 @@ fun Context.getOTGItems(path: String, shouldShowHidden: Boolean, getProperFileSi
|
|||
callback(items)
|
||||
}
|
||||
|
||||
fun Context.rescanDeletedPath(path: String, callback: (() -> Unit)? = null) {
|
||||
if (path.startsWith(filesDir.toString())) {
|
||||
callback?.invoke()
|
||||
return
|
||||
}
|
||||
|
||||
if (deleteFromMediaStore(path)) {
|
||||
callback?.invoke()
|
||||
} else {
|
||||
if (File(path).isDirectory) {
|
||||
callback?.invoke()
|
||||
return
|
||||
}
|
||||
|
||||
// scanFile doesnt trigger in some cases, refresh items manually after some period
|
||||
val SCAN_FILE_MAX_DURATION = 1000L
|
||||
val scanFileHandler = Handler(Looper.getMainLooper())
|
||||
scanFileHandler.postDelayed({
|
||||
callback?.invoke()
|
||||
}, SCAN_FILE_MAX_DURATION)
|
||||
|
||||
MediaScannerConnection.scanFile(applicationContext, arrayOf(path), null) { path, uri ->
|
||||
scanFileHandler.removeCallbacksAndMessages(null)
|
||||
try {
|
||||
applicationContext.contentResolver.delete(uri, null, null)
|
||||
} catch (e: Exception) {
|
||||
}
|
||||
callback?.invoke()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fun Context.trySAFFileDelete(fileDirItem: FileDirItem, allowDeleteFolder: Boolean = false, callback: ((wasSuccess: Boolean) -> Unit)? = null) {
|
||||
var fileDeleted = tryFastDocumentDelete(fileDirItem.path, allowDeleteFolder)
|
||||
if (!fileDeleted) {
|
||||
|
|
|
@ -661,6 +661,6 @@
|
|||
<string name="gesture_views_title">Gesture Views (zoomable images)</string>
|
||||
|
||||
<!-- Google Play listing -->
|
||||
<string name="deprecated_app">DESCONTINUADA: Aquesta versió de l’aplicació ja no es manté, obteniu la versió Pro a l'adreça https://play.google.com/store/apps/details?id=com.simplemobiletools.xxx.pro</string>
|
||||
<string name="deprecated_app">DESCONTINUADA: Aquesta versió de l’aplicació ja no es manté, obteniu la versió Pro a l\'adreça https://play.google.com/store/apps/details?id=com.simplemobiletools.xxx.pro</string>
|
||||
<string name="pro_app_refund">No us oblideu que si desinstal·leu qualsevol aplicació de pagament en un termini de 2 hores, se us retornarà automàticament. Si voleu un reemborsament en qualsevol moment més tard, poseu-vos en contacte amb nosaltres a hello@simplemobiletools.com i ho rebreu. Això fa que sigui fàcil provar-ho :)</string>
|
||||
</resources>
|
||||
|
|
|
@ -629,7 +629,7 @@
|
|||
<string name="faq_4_text_commons">Oui, quand vous glissez le widget sur l\'écran d\'accueil un dialogue de configuration apparaît. Vous verrez des carrés en bas à gauche, en appuyant dessus vous pouvez choisir une nouvelle couleur. Vous pouvez aussi utiliser le curseur pour régler la transparence.</string>
|
||||
<string name="faq_5_title_commons">Puis-je restaurer les fichiers supprimés ?</string>
|
||||
<string name="faq_5_text_commons">S\'ils ont été réellement supprimés, vous ne pouvez pas. Cependant, une corbeille étant activée par défaut, les fichiers ont peut-être simplement été déplacés dans la corbeille au lieu d\'être supprimer.</string>
|
||||
<string name="faq_6_title_commons">L\'icône du lanceur d'applications a disparu. Que puis-je faire ?</string>
|
||||
<string name="faq_6_title_commons">L\'icône du lanceur d\'applications a disparu. Que puis-je faire ?</string>
|
||||
<string name="faq_6_text_commons">Votre lanceur ne prend pas correctement en charge la personnalisation des icônes. Essayez de lancer l\'application via Google Play ou un widget, le cas échéant.
|
||||
Une fois lancé, il vous suffit de redéfinir l\'icône orange par défaut #F57C00. Dans le pire des cas, vous devrez peut-être réinstaller l\'application.</string>
|
||||
|
||||
|
|
Loading…
Reference in a new issue