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

Merge branch '1.x' of git.kde.org:kdeconnect-android into 1.x

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

View File

@@ -3,14 +3,14 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.2'
classpath 'com.android.tools.build:gradle:2.3.3'
}
}
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);
}
}