android 11 part 1

This commit is contained in:
afischerdev 2021-07-24 11:49:29 +02:00
parent 11a4ef0515
commit 9875672907
13 changed files with 700 additions and 172 deletions

View file

@ -25,7 +25,7 @@ public class AppLogger
// open logfile if existing
File sd = Environment.getExternalStorageDirectory();
if ( sd == null ) return;
File debugLog = new File( sd, "Android/data/btools.routingapp/files/brouterapp.txt" );
File debugLog = new File( sd, "Android/media/btools.routingapp/brouter/brouterapp.txt" );
if ( debugLog.exists() )
{
debugLogWriter = new FileWriter( debugLog, true );