2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-31 14:15:14 +00:00

Merge branch '1.x'

This commit is contained in:
Albert Vaca
2017-07-14 01:38:54 +02:00
2 changed files with 5 additions and 5 deletions

View File

@@ -10,7 +10,7 @@ buildscript {
apply plugin: 'com.android.application'
android {
buildToolsVersion '25.0.2'
buildToolsVersion '25.0.3'
compileSdkVersion 25
defaultConfig {
minSdkVersion 9
@@ -71,9 +71,9 @@ dependencies {
mavenCentral()
}
compile 'com.android.support:support-v4:25.1.1'
compile 'com.android.support:appcompat-v7:25.1.1'
compile 'com.android.support:design:25.1.1'
compile 'com.android.support:support-v4:25.3.1'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'org.apache.sshd:sshd-core:0.8.0' //0.9 seems to fail on Android 6 and 1.+ requires java.nio.file, which doesn't exist in Android

View File

@@ -146,7 +146,7 @@ public class PluginFactory {
} catch(Exception e) {
Log.e("PluginFactory","getPluginInfo exception");
e.printStackTrace();
return null;
throw new RuntimeException(e);
}
}