mirror of
https://github.com/KDE/kdeconnect-android
synced 2025-08-30 05:37:43 +00:00
Reenabled ClipboardPlugin for Android 4.3
An official fix for the bug has been released
This commit is contained in:
parent
72b25f2b7d
commit
a7c06eb149
@ -43,7 +43,7 @@ public class ClipboardPlugin extends Plugin {
|
||||
|
||||
@Override
|
||||
public boolean isEnabledByDefault() {
|
||||
return true;
|
||||
return (Build.VERSION.SDK_INT >= 11);
|
||||
}
|
||||
|
||||
private ClipboardManager cm;
|
||||
@ -73,7 +73,7 @@ public class ClipboardPlugin extends Plugin {
|
||||
|
||||
cm = (ClipboardManager)context.getSystemService(Context.CLIPBOARD_SERVICE);
|
||||
|
||||
if (Build.VERSION.SDK_INT == 18) {
|
||||
if (Build.VERSION.SDK_INT < 11) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user