I have an Android 7.0 test device and my APK targets = "targetSdkVersion 22", with:
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
with:
final File f = new
File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES) + File.separator + "DressUpBaby" + photonumber + ".png");
f.createNewFile();
and at this point I get the warning:
W/System.err: java.io.IOException: Permission denied
How to get it to save the file? This was working when I created this on Eclipse, but now that I have updated and moved to Android Studio it seems to have broken something.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…