Skip to content

Commit 6647767

Browse files
Merge pull request #623 from zumbrunnen/gradle_cleanup
Gradle Cleanup
2 parents dd61981 + dc4d2db commit 6647767

File tree

14 files changed

+18
-232
lines changed

14 files changed

+18
-232
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.idea/*
2+
*.iml
23
local.properties
34
gradle
45
.gradle

DroidPlanner/FlightDataActivity.iml

Lines changed: 0 additions & 46 deletions
This file was deleted.

DroidPlanner/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ apply plugin: 'android'
22

33
dependencies {
44
compile files('libs/usbseriallibrary.jar')
5-
compile project(':google-play-services_lib')
5+
compile 'com.android.support:support-v4:18.0.0'
6+
compile 'com.google.android.gms:play-services:4.0.30'
67
compile project(':Mavlink')
78
compile project(':HorizontalVariableListView:HorizontalVariableListView')
89
}

HorizontalVariableListView

Mavlink/Mavlink.iml

Lines changed: 0 additions & 74 deletions
This file was deleted.

Mavlink/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply plugin: 'android-library'
22

33
dependencies {
4-
compile project(':google-play-services_lib')
4+
compile 'com.android.support:support-v4:18.0.0'
55
}
66

77
android {

Mavlink/project.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
1212

1313
# Project target.
14-
target=android-18
14+
target=android-19
1515
android.library=true
16-
android.library.reference.1=../google-play-services_lib
16+

build.gradle

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2+
23
buildscript {
34
repositories {
45
mavenCentral()
56
}
67
dependencies {
7-
classpath 'com.android.tools.build:gradle:0.7.+'
8+
classpath 'com.android.tools.build:gradle:0.8.+'
89
}
910
}
11+
12+
allprojects {
13+
repositories {
14+
mavenCentral()
15+
}
16+
}

droidplanner.iml

Lines changed: 0 additions & 15 deletions
This file was deleted.

google-play-services_lib/build.gradle

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,11 @@ buildscript {
22
repositories {
33
mavenCentral()
44
}
5-
dependencies {
6-
classpath 'com.android.tools.build:gradle:0.7.+'
7-
}
85
}
96
apply plugin: 'android-library'
107

118
dependencies {
12-
compile 'com.android.support:support-v4:13.0.0'
9+
compile 'com.android.support:support-v4:18.0.0'
1310
compile 'com.google.android.gms:play-services:4.0.30'
1411
}
1512

0 commit comments

Comments
 (0)