summaryrefslogtreecommitdiff
path: root/android/src
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2018-08-17 18:44:05 +0200
committerMax Kellermann <max@musicpd.org>2018-08-17 19:01:37 +0200
commit98efb4f6d518765af5a9f9d86fffc33a94056fdb (patch)
tree3ba3981c80f85ec72cf0c283a1194b0e91404de6 /android/src
parent36edb4886c371b90bdc27eed305f112196dfb765 (diff)
android: raise minSdkVersion to 21
The number of MPD installs on Android < 5.0 is negligible, and that API version introduces lots of useful features for MPD.
Diffstat (limited to 'android/src')
-rw-r--r--android/src/Main.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/src/Main.java b/android/src/Main.java
index 933524398..da64a1976 100644
--- a/android/src/Main.java
+++ b/android/src/Main.java
@@ -49,7 +49,7 @@ public class Main extends Activity implements Runnable {
TextView tv = new TextView(this);
tv.setText("Failed to load the native MPD libary.\n" +
"Report this problem to us, and include the following information:\n" +
- "ABI=" + Build.CPU_ABI + "\n" +
+ "SUPPORTED_ABIS=" + String.join(", ", Build.SUPPORTED_ABIS) + "\n" +
"PRODUCT=" + Build.PRODUCT + "\n" +
"FINGERPRINT=" + Build.FINGERPRINT + "\n" +
"error=" + Loader.error);