This repository was archived by the owner on Dec 8, 2022. It is now read-only.
File tree 12 files changed +43
-28
lines changed
12 files changed +43
-28
lines changed Original file line number Diff line number Diff line change @@ -25,4 +25,11 @@ apply plugin: 'com.android.application'
25
25
26
26
android {
27
27
compileSdkVersion 15
28
+
29
+ defaultConfig {
30
+ minSdkVersion 15
31
+ targetSdkVersion 15
32
+ versionCode 3
33
+ versionName " 1.0"
34
+ }
28
35
}
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
3
package =" com.github.rosjava.android_apps.make_a_map"
4
- android : versionCode =" 3"
5
- android : versionName =" 1.0"
6
4
xmlns : tools =" http://schemas.android.com/tools" >
7
5
8
- <uses-sdk android : minSdkVersion =" 13" />
9
-
10
6
<uses-permission android : name =" android.permission.INTERNET" />
11
7
<uses-permission android : name =" android.permission.WAKE_LOCK" />
12
8
Original file line number Diff line number Diff line change 57
57
android : layout_width =" fill_parent"
58
58
android : layout_height =" fill_parent"
59
59
android : layout_weight =" .25"
60
- android : src =" @drawable /icon" />
60
+ android : src =" @mipmap /icon" />
61
61
62
62
<LinearLayout
63
63
android : id =" @+id/side_layout"
82
82
</LinearLayout >
83
83
</LinearLayout >
84
84
85
- </LinearLayout >
85
+ </LinearLayout >
Original file line number Diff line number Diff line change @@ -22,6 +22,13 @@ dependencies {
22
22
apply plugin : ' com.android.application'
23
23
24
24
android {
25
- compileSdkVersion 15
25
+ compileSdkVersion 15
26
+
27
+ defaultConfig {
28
+ minSdkVersion 15
29
+ targetSdkVersion 15
30
+ versionCode 3
31
+ versionName " 1.0"
32
+ }
26
33
}
27
34
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
3
package =" com.github.rosjava.android_apps.map_manager"
4
- android : versionCode =" 3"
5
- android : versionName =" 1.0"
6
4
xmlns : tools =" http://schemas.android.com/tools" >
7
5
8
- <uses-sdk android : minSdkVersion =" 13" />
9
-
10
6
<uses-permission android : name =" android.permission.INTERNET" />
11
7
<uses-permission android : name =" android.permission.WAKE_LOCK" />
12
8
35
31
</intent-filter >
36
32
</service >
37
33
</application >
38
- </manifest >
34
+ </manifest >
Original file line number Diff line number Diff line change @@ -24,6 +24,13 @@ dependencies {
24
24
apply plugin : ' com.android.application'
25
25
26
26
android {
27
- compileSdkVersion 15
27
+ compileSdkVersion 15
28
+
29
+ defaultConfig {
30
+ minSdkVersion 15
31
+ targetSdkVersion 15
32
+ versionCode 3
33
+ versionName " 1.0"
34
+ }
28
35
}
29
36
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
3
package =" com.github.rosjava.android_apps.map_nav"
4
- android : versionCode =" 3"
5
- android : versionName =" 1.0"
6
4
xmlns : tools =" http://schemas.android.com/tools" >
7
5
8
- <uses-sdk android : minSdkVersion =" 13" />
9
-
10
6
<uses-permission android : name =" android.permission.INTERNET" />
11
7
<uses-permission android : name =" android.permission.WAKE_LOCK" />
12
8
35
31
</intent-filter >
36
32
</service >
37
33
</application >
38
- </manifest >
34
+ </manifest >
Original file line number Diff line number Diff line change 67
67
android : layout_width =" fill_parent"
68
68
android : layout_height =" fill_parent"
69
69
android : layout_weight =" .25"
70
- android : src =" @drawable /icon" />
70
+ android : src =" @mipmap /icon" />
71
71
72
72
<LinearLayout
73
73
android : id =" @+id/side_layout"
92
92
</LinearLayout >
93
93
</LinearLayout >
94
94
95
- </LinearLayout >
95
+ </LinearLayout >
Original file line number Diff line number Diff line change 15
15
*/
16
16
17
17
include ' teleop'
18
+ /*
18
19
include 'map_nav'
19
20
include 'make_a_map'
20
21
include 'map_manager'
22
+ */
Original file line number Diff line number Diff line change @@ -22,5 +22,13 @@ dependencies {
22
22
apply plugin : ' com.android.application'
23
23
24
24
android {
25
- compileSdkVersion 15
25
+ compileSdkVersion 15
26
+
27
+ defaultConfig {
28
+ minSdkVersion 15
29
+ targetSdkVersion 15
30
+ versionCode 2
31
+ versionName " 1.0"
32
+ }
33
+
26
34
}
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
3
package =" com.github.rosjava.android_apps.teleop"
4
- android : versionCode =" 2"
5
- android : versionName =" 1.0"
6
4
xmlns : tools =" http://schemas.android.com/tools" >
7
5
8
- <uses-sdk android : minSdkVersion =" 13" />
9
-
10
6
<uses-permission android : name =" android.permission.INTERNET" />
11
7
<uses-permission android : name =" android.permission.WAKE_LOCK" />
12
8
35
31
</intent-filter >
36
32
</service >
37
33
</application >
38
- </manifest >
34
+ </manifest >
Original file line number Diff line number Diff line change 39
39
android : layout_width =" fill_parent"
40
40
android : layout_height =" fill_parent"
41
41
android : layout_weight =" .5"
42
- android : src =" @drawable /icon" />
42
+ android : src =" @mipmap /icon" />
43
43
44
44
<LinearLayout
45
45
android : id =" @+id/side_layout"
68
68
</LinearLayout >
69
69
</LinearLayout >
70
70
71
- </LinearLayout >
71
+ </LinearLayout >
You can’t perform that action at this time.
0 commit comments