Found a very minor bug:
Have this code, which shows the files in the App folder and the Assets folder:
At this line: Dim rs2 As ResumableSub = etc.
I get this warning:
File Files in Assets folder is missing from the Files tab. (warning #17)
It is no trouble as I can put an 'ignore comment there, but I think this is a minor bug.
RBS
Have this code, which shows the files in the App folder and the Assets folder:
B4X:
Sub ShowFilesInAppFolder
Dim rs1 As ResumableSub = ShowFilesInFolder(File.DirInternal, "Files in App folder", "", _
Array As String("OK", "Show Assets folder"), _
True, True, True, False)
Wait For (rs1) Complete (strResult As String)
If strResult = "Show Assets folder" Then
Dim rs2 As ResumableSub = ShowFilesInFolder(File.DirAssets, "Files in Assets folder", "", _
Array As String("OK"), _
False, False, True, False)
Wait For (rs2) Complete (strResult As String)
End If
End Sub
At this line: Dim rs2 As ResumableSub = etc.
I get this warning:
File Files in Assets folder is missing from the Files tab. (warning #17)
It is no trouble as I can put an 'ignore comment there, but I think this is a minor bug.
RBS