Skip to content

Commit 25e3243

Browse files
Merge branch 'master' into beta
Conflicts: Android/AndroidManifest.xml Android/res/layout/activity_drawer_navigation_ui.xml Android/res/layout/fragment_mode_circle.xml
2 parents 6d568e8 + 5e7734c commit 25e3243

File tree

434 files changed

+53583
-6137
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

434 files changed

+53583
-6137
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,9 @@ proguard/
2828
#Android Studio files
2929
*.iml
3030
.idea/
31+
32+
# Eclipse files
33+
.metadata
34+
35+
# Mac OSX files
36+
.DS_Store

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ android:
88

99
before_script:
1010
- echo yes | android update sdk -u -a -t tools
11-
- echo yes | android update sdk -u -a -t build-tools-20.0.0,build-tools-19.1.0
12-
- echo yes | android update sdk -u -a -t android-20,android-19
11+
- echo yes | android update sdk -u -a -t build-tools-21.0.1,build-tools-20.0.0,build-tools-19.1.0
12+
- echo yes | android update sdk -u -a -t android-21,android-20,android-19
1313
- echo yes | android update sdk -u -a -t extra-google-m2repository
1414
- echo yes | android update sdk -u -a -t extra-android-m2repository
1515
- echo yes | android update sdk -u -a -t extra-android-support,extra-google-google_play_services

Android/.classpath

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry exported="true" kind="src" path="/Core"/>
4-
<classpathentry exported="true" kind="src" path="/Mavlink"/>
53
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
64
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
75
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>

Android/AndroidManifest.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
xmlns:tools="http://schemas.android.com/tools"
44
package="org.droidplanner"
5-
android:versionCode="104"
5+
android:versionCode="105"
66
android:versionName="please run version.sh to get the version name">
77

88
<uses-sdk
99
android:minSdkVersion="14"
10-
android:targetSdkVersion="19" />
10+
android:targetSdkVersion="21" />
1111

1212
<supports-screens
1313
android:requiresSmallestWidthDp="320"/>
@@ -134,6 +134,12 @@
134134
android:value=".android.activities.SettingsActivity"/>
135135
</activity>
136136

137+
<activity
138+
android:name=".android.activities.LocatorActivity"
139+
android:label="@string/locator"
140+
android:launchMode="singleTop"
141+
android:theme="@style/CustomActionBarTheme.Transparent" />
142+
137143
<receiver android:name=".android.communication.service.NetworkConnectivityReceiver"
138144
android:enabled="false">
139145
<intent-filter>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<cameraInfo>
3+
<Name>GoPro Hero 4 Black</Name>
4+
<SensorWidth>6.17</SensorWidth>
5+
<SensorHeight>4.55</SensorHeight>
6+
<SensorResolution>12.0</SensorResolution>
7+
<FocalLength>14</FocalLength>
8+
</cameraInfo>

Android/build.gradle

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ repositories {
55
}
66

77
dependencies {
8-
compile 'com.android.support:support-v4:20.0.0'
98
compile files('libs/droneapi-java.jar')
109
compile 'com.google.android.gms:play-services:5.0.89'
1110
compile 'com.sothree.slidinguppanel:library:2.0.2'
@@ -17,25 +16,29 @@ dependencies {
1716
transitive=true
1817
}
1918

19+
compile 'com.android.support:support-v4:20.0.0'
20+
21+
compile project(':Core')
22+
compile project(':Mavlink')
23+
compile project(':Libraries:HorizontalVariableListView:HorizontalVariableListView')
24+
2025
compile files('libs/usbseriallibrary.jar')
2126
compile files('libs/j2xx.jar')
2227
compile files('libs/protobuf-java-2.5.0.jar')
2328
compile files('libs/jeromq-0.3.4.jar')
2429

25-
compile project(':Core')
26-
compile project(':Mavlink')
27-
compile project(':Libraries:HorizontalVariableListView:HorizontalVariableListView')
2830
compile project(':Libraries:PebbleKit')
2931
compile project(':Libraries:usb-serial-for-android:UsbSerialLibrary')
3032
}
3133

3234
android {
33-
compileSdkVersion 19
34-
buildToolsVersion '19.1.0'
35+
compileSdkVersion 21
36+
buildToolsVersion "21.0.1"
3537

3638
defaultConfig {
39+
applicationId 'org.droidplanner'
3740
minSdkVersion 14
38-
targetSdkVersion 19
41+
targetSdkVersion 21
3942
versionName getGitVersion()
4043
}
4144

Android/libs/droneapi-java.jar

119 Bytes
Binary file not shown.

Android/project.properties

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

1313
# Project target.
14-
target=android-19
14+
target=android-21
1515
android.library.reference.1=../Libraries/usb-serial-for-android/UsbSerialLibrary
1616
android.library.reference.2=../Libraries/HorizontalVariableListView/HorizontalVariableListView
17-
android.library.reference.3=../Mavlink
18-
android.library.reference.4=../Core
19-
android.library.reference.5=../Libraries/google-play-services_lib
20-
android.library.reference.6=../Libraries/PebbleKit
21-
android.library.reference.7=../Libraries/mapbox-android-sdk/0.4.0
22-
android.library.reference.8=../Libraries/AndroidSlidingUpPanel-2.0.2/library
17+
android.library.reference.3=../Libraries/google-play-services_lib
18+
android.library.reference.4=../Libraries/PebbleKit
19+
android.library.reference.5=../Libraries/mapbox-android-sdk/0.4.0
20+
android.library.reference.6=../Libraries/AndroidSlidingUpPanel-2.0.2/library
21+
android.library.reference.7=../Libraries/EllipsoidFit/EllipsoidFit
22+
android.library.reference.8=../Mavlink
23+
android.library.reference.9=../Core
-6 KB
Binary file not shown.
877 Bytes
Loading

0 commit comments

Comments
 (0)