mirror of
https://github.com/KDE/kdeconnect-android
synced 2025-08-31 22:25:08 +00:00
Upgraded project to new Android SDK
Now using gradle magic imports instead of jar files for libraries
This commit is contained in:
18
build.gradle
18
build.gradle
@@ -3,25 +3,27 @@ buildscript {
|
|||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:0.5.+'
|
classpath 'com.android.tools.build:gradle:0.6.+'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
apply plugin: 'android'
|
apply plugin: 'android'
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 18
|
compileSdkVersion 19
|
||||||
buildToolsVersion "18.1.1"
|
buildToolsVersion "19"
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion 9
|
minSdkVersion 9
|
||||||
targetSdkVersion 18
|
targetSdkVersion 19
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile "com.android.support:support-v4:18.0.+"
|
repositories {
|
||||||
compile "com.android.support:appcompat-v7:18.0.+"
|
mavenCentral()
|
||||||
compile files('libs/mina-core-2.0.7.jar')
|
}
|
||||||
compile files('libs/slf4j-api-1.6.6.jar')
|
compile "com.android.support:support-v4:19.0.+"
|
||||||
|
compile "com.android.support:appcompat-v7:19.0.+"
|
||||||
|
compile "org.apache.mina:mina-core:2.0.+"
|
||||||
}
|
}
|
||||||
|
@@ -21,8 +21,9 @@
|
|||||||
</configuration>
|
</configuration>
|
||||||
</facet>
|
</facet>
|
||||||
</component>
|
</component>
|
||||||
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_6" inherit-compiler-output="false">
|
<component name="NewModuleRootManager" inherit-compiler-output="false">
|
||||||
<output url="file://$MODULE_DIR$/build/classes/debug" />
|
<output url="file://$MODULE_DIR$/build/classes/debug" />
|
||||||
|
<exclude-output />
|
||||||
<content url="file://$MODULE_DIR$">
|
<content url="file://$MODULE_DIR$">
|
||||||
<sourceFolder url="file://$MODULE_DIR$/build/source/r/debug" isTestSource="false" />
|
<sourceFolder url="file://$MODULE_DIR$/build/source/r/debug" isTestSource="false" />
|
||||||
<sourceFolder url="file://$MODULE_DIR$/build/source/aidl/debug" isTestSource="false" />
|
<sourceFolder url="file://$MODULE_DIR$/build/source/aidl/debug" isTestSource="false" />
|
||||||
@@ -69,12 +70,12 @@
|
|||||||
<excludeFolder url="file://$MODULE_DIR$/build/symbols" />
|
<excludeFolder url="file://$MODULE_DIR$/build/symbols" />
|
||||||
<excludeFolder url="file://$MODULE_DIR$/build/tmp" />
|
<excludeFolder url="file://$MODULE_DIR$/build/tmp" />
|
||||||
</content>
|
</content>
|
||||||
<orderEntry type="jdk" jdkName="Android 4.3 Platform" jdkType="Android SDK" />
|
<orderEntry type="jdk" jdkName="Android API 19 Platform" jdkType="Android SDK" />
|
||||||
<orderEntry type="sourceFolder" forTests="false" />
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
<orderEntry type="library" exported="" name="support-v4-18.0.0" level="project" />
|
|
||||||
<orderEntry type="library" exported="" name="ComAndroidSupportAppcompatV71800.aar" level="project" />
|
|
||||||
<orderEntry type="library" exported="" name="slf4j-api-1.6.6" level="project" />
|
<orderEntry type="library" exported="" name="slf4j-api-1.6.6" level="project" />
|
||||||
|
<orderEntry type="library" exported="" name="support-v4-19.0.0" level="project" />
|
||||||
<orderEntry type="library" exported="" name="mina-core-2.0.7" level="project" />
|
<orderEntry type="library" exported="" name="mina-core-2.0.7" level="project" />
|
||||||
|
<orderEntry type="library" exported="" name="ComAndroidSupportAppcompatV71900.aar" level="project" />
|
||||||
</component>
|
</component>
|
||||||
</module>
|
</module>
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="org.kde.kdeconnect_tp"
|
package="org.kde.kdeconnect_tp"
|
||||||
android:versionCode="8"
|
android:versionCode="9"
|
||||||
android:versionName="0.4">
|
android:versionName="0.4">
|
||||||
|
|
||||||
<uses-sdk android:minSdkVersion="9"
|
<uses-sdk android:minSdkVersion="9"
|
||||||
|
Reference in New Issue
Block a user