Skip to content

Commit 4dee1ca

Browse files
committed
Merge pull request #390 from chaviw/mavlink_jar_fix
Fixed copy dir for mavlink jar
2 parents 6b86100 + a3f59cb commit 4dee1ca

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ClientLib/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ext {
44
VERSION_MAJOR = 2
55
VERSION_MINOR = 9
66
VERSION_PATCH = 0
7-
VERSION_SUFFIX = "alpha3"
7+
VERSION_SUFFIX = "alpha4"
88

99
PUBLISH_ARTIFACT_ID = 'dronekit-android'
1010
PUBLISH_VERSION = generateVersionName("", VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH, VERSION_SUFFIX)
@@ -58,7 +58,7 @@ dependencies {
5858
compile "com.android.support:support-v4:${support_lib_version}"
5959
compile "com.google.android.gms:play-services-base:${play_services_version}"
6060

61-
compile project(':Mavlink')
61+
debugCompile project(':Mavlink')
6262
releaseCompile files('libs/Mavlink.jar')
6363
}
6464

dependencyLibs/Mavlink/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ sourceSets {
1111
}
1212

1313
jar {
14-
destinationDir (new File("${rootDir}/../dronekit-android-dev/ClientLib/libs"))
14+
destinationDir (new File("${rootDir}/../dronekit-android/ClientLib/libs"))
1515
}
1616

1717
dependencies {

0 commit comments

Comments
 (0)