Android Question starter.java uses or overrides a deprecated API

cirollo

Active Member
Licensed User
Longtime User
Hi guys!
what to check?

compile error
B4A version: 6.80
Parsing code. (0.06s)
Compiling code. (1.32s)
Compiling layouts code. (0.11s)
Organizing libraries. (0.00s)
Generating R file. (0.16s)
Compiling generated Java code. Error
javac 1.8.0_45
src\emmeci\fivestars_hospital\main.java:66: error: error while writing WaitForLayout: could not create parent directories
static class WaitForLayout implements Runnable {
^
Note: src\emmeci\fivestars_hospital\starter.java uses or overrides a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
1 error

java version
C:\Program Files\Java\jdk1.8.0_45\bin\javac.exe

android version
C:\Android\android-sdk\platforms\android-23\android.jar

in my service module I only have this:
B4X:
#Region  Service Attributes
   #StartAtBoot: False
   #ExcludeFromLibrary: True
#End Region

Sub Process_Globals
   'These global variables will be declared once when the application starts.
   'These variables can be accessed from all modules.

End Sub

Sub Service_Create
   'This is the program entry point.
   'This is a good place to load resources that are not specific to a single activity.

End Sub

Sub Service_Start (StartingIntent As Intent)
   StopService(Me)
End Sub

'Return true to allow the OS default exceptions handler to handle the uncaught exception.
Sub Application_Error (Error As Exception, StackTrace As String) As Boolean
   Return True
End Sub

Sub Service_Destroy

End Sub
 

DonManfred

Expert
Licensed User
Longtime User
Upvote 0

cirollo

Active Member
Licensed User
Longtime User
yes Erel, is on a network (mapped with letter Z:\, not \\) folder

until now it wasn't a problem, I should move it on a local folder?

regards,
ciro
 
Upvote 0
Top