Skip to content

Commit

Permalink
remove storage permission for android
Browse files Browse the repository at this point in the history
  • Loading branch information
julesgrc0 committed Mar 21, 2024
1 parent 7ebc23c commit 0166c94
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
4 changes: 0 additions & 4 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-feature android:glEsVersion="0x00020000" android:required="true" />

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

<application
android:allowBackup="true"
android:appCategory="game"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,5 @@ protected void onCreate(Bundle savedInstanceState) {
| View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
| View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
);

// get internal data path:
String internalDataPath = getFilesDir().getAbsolutePath();
// log it to the console:
System.out.println("WISPY_PATH Internal data path: " + internalDataPath);
}
}

0 comments on commit 0166c94

Please sign in to comment.