Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
65df6ca1
Commit
65df6ca1
authored
May 04, 2019
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
android/Settings: request READ_EXTERNAL_STORAGE permission
Using this API function requires SDK level 23.
parent
36dec47b
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
37 additions
and
1 deletion
+37
-1
NEWS
NEWS
+1
-0
meson.build
android/meson.build
+1
-1
Settings.java
android/src/Settings.java
+35
-0
No files found.
NEWS
View file @
65df6ca1
ver 0.21.9 (not yet released)
* Android
- fix crash on ARMv7
- request storage permission on Android 6+
ver 0.21.8 (2019/04/23)
* input
...
...
android/meson.build
View file @
65df6ca1
...
...
@@ -6,7 +6,7 @@ android_sdk = get_option('android_sdk')
android_abi = get_option('android_abi')
android_sdk_build_tools_version = '27.0.0'
android_sdk_platform = 'android-2
1
'
android_sdk_platform = 'android-2
3
'
android_build_tools_dir = join_paths(android_sdk, 'build-tools', android_sdk_build_tools_version)
android_sdk_platform_dir = join_paths(android_sdk, 'platforms', android_sdk_platform)
...
...
android/src/Settings.java
View file @
65df6ca1
...
...
@@ -21,10 +21,12 @@ package org.musicpd;
import
java.util.LinkedList
;
import
android.Manifest
;
import
android.app.Activity
;
import
android.content.Context
;
import
android.content.SharedPreferences
;
import
android.content.SharedPreferences.Editor
;
import
android.content.pm.PackageManager
;
import
android.os.Bundle
;
import
android.os.Handler
;
import
android.os.Message
;
...
...
@@ -178,6 +180,14 @@ public class Settings extends Activity {
@Override
protected
void
onCreate
(
Bundle
savedInstanceState
)
{
/* TODO: this sure is the wrong place to request
permissions - it will cause MPD to quit
immediately; we should request permissions when we
need them, but implementing that is complicated, so
for now, we do it here to give users a quick
solution for the problem */
requestAllPermissions
();
setContentView
(
R
.
layout
.
settings
);
mRunButton
=
(
ToggleButton
)
findViewById
(
R
.
id
.
run
);
mRunButton
.
setOnCheckedChangeListener
(
mOnRunChangeListener
);
...
...
@@ -203,6 +213,31 @@ public class Settings extends Activity {
super
.
onCreate
(
savedInstanceState
);
}
private
void
checkRequestPermission
(
String
permission
)
{
if
(
checkSelfPermission
(
permission
)
==
PackageManager
.
PERMISSION_GRANTED
)
return
;
try
{
this
.
requestPermissions
(
new
String
[]{
permission
},
0
);
}
catch
(
Exception
e
)
{
Log
.
e
(
TAG
,
"requestPermissions("
+
permission
+
") failed"
,
e
);
}
}
private
void
requestAllPermissions
()
{
if
(
android
.
os
.
Build
.
VERSION
.
SDK_INT
<
23
)
/* we don't need to request permissions on
this old Android version */
return
;
/* starting with Android 6.0, we need to explicitly
request all permissions before using them;
mentioning them in the manifest is not enough */
checkRequestPermission
(
Manifest
.
permission
.
READ_EXTERNAL_STORAGE
);
}
private
void
connectClient
()
{
mClient
=
new
Main
.
Client
(
this
,
new
Main
.
Client
.
Callback
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment