2
0
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:
Albert Vaca 2013-08-27 17:19:31 +02:00
parent 72b25f2b7d
commit a7c06eb149
2 changed files with 2 additions and 2 deletions

View File

@ -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;
}

0
gradlew vendored Executable file → Normal file
View File