
- Forum-Beiträge: 672
25.01.2021, 22:07:54 via Website
25.01.2021 22:07:54 via Website
Hallo zusammen
In meiner App möchte ich auf den externen Speicher zugreifen. Wenn ich die App starte kommt die Meldung, dass ich keine Rechte habe. Im Manifest ist der entsprechende Eintrag gelb hinterlegt.
<?xml version="1.0" encoding="utf-8"?>
xmlns:tools="http://schemas.android.com/tools"
package="ch.robbisoft.sakristanhilfe">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
tools:ignore="GoogleAppIndexingWarning">
<activity android:name=".FestTagsKalender"></activity>
<activity android:name=".Optionen" />
<activity android:name=".Termin" />
<activity android:name=".work" />
<activity android:name=".eingabe" />
<activity
android:name=".MainActivity"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
Was läuft hier schief?
Gruss Renato