├── .gitignore
├── .travis.yml
├── CHANGELOG
├── LICENSE.txt
├── README.markdown
├── add-ons
├── google-apis-10
│ └── pom.xml
├── google-apis-11
│ └── pom.xml
├── google-apis-12
│ └── pom.xml
├── google-apis-13
│ └── pom.xml
├── google-apis-14
│ └── pom.xml
├── google-apis-15
│ ├── pom.xml
│ └── source.properties
├── google-apis-16
│ ├── pom.xml
│ └── source.properties
├── google-apis-17
│ ├── pom.xml
│ └── source.properties
├── google-apis-18
│ ├── pom.xml
│ └── source.properties
├── google-apis-19
│ ├── pom.xml
│ └── source.properties
├── google-apis-21
│ ├── pom.xml
│ └── source.properties
├── google-apis-22
│ ├── pom.xml
│ └── source.properties
├── google-apis-23
│ ├── pom.xml
│ └── source.properties
├── google-apis-24
│ ├── pom.xml
│ └── source.properties
├── google-apis-7
│ └── pom.xml
├── google-apis-8
│ └── pom.xml
├── google-gdk-15
│ └── pom.xml
├── google-gdk-19
│ ├── pom.xml
│ └── pom.xml~
└── pom.xml
├── extras
├── compatibility-v13
│ └── pom.xml
├── compatibility-v4
│ └── pom.xml
├── compatibility-v7-appcompat
│ └── pom.xml
├── compatibility-v7-gridlayout
│ └── pom.xml
├── compatibility-v7-mediarouter
│ └── pom.xml
├── google-play-services
│ └── pom.xml
├── multidex
│ └── pom.xml
├── play-apk-expansion
│ ├── downloader-library
│ │ └── pom.xml
│ ├── pom.xml
│ └── zip-file
│ │ └── pom.xml
├── play-licensing
│ └── pom.xml
└── pom.xml
├── install_platforms_locally.sh
├── install_repositories_locally.sh
├── platforms
├── android-10
│ └── pom.xml
├── android-11
│ └── pom.xml
├── android-12
│ └── pom.xml
├── android-13
│ └── pom.xml
├── android-14
│ └── pom.xml
├── android-15
│ └── pom.xml
├── android-16
│ └── pom.xml
├── android-17
│ └── pom.xml
├── android-18
│ └── pom.xml
├── android-19
│ └── pom.xml
├── android-20
│ └── pom.xml
├── android-21
│ └── pom.xml
├── android-22
│ └── pom.xml
├── android-23
│ └── pom.xml
├── android-24
│ └── pom.xml
├── android-25
│ └── pom.xml
├── android-26
│ └── pom.xml
├── android-27
│ └── pom.xml
├── android-28
│ └── pom.xml
├── android-29
│ └── pom.xml
├── android-7
│ └── pom.xml
├── android-8
│ └── pom.xml
├── android-MNC
│ └── pom.xml
└── pom.xml
├── pom.xml
├── remove_artifacts.sh
└── repositories
├── android-m2repository
└── pom.xml
├── extras-m2repository
└── pom.xml
├── google-m2repository
└── pom.xml
└── pom.xml
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | target
3 | *.iws
4 | *.ipr
5 | *.iml
6 | .idea
7 | .classpath
8 | .project
9 | .settings
10 | gen-external-apklibs
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | sudo: false
2 | cache:
3 | directories:
4 | - $HOME/.m2
5 | jdk: oraclejdk8
6 | language: android
7 | android:
8 | components:
9 | - tools
10 | - platform-tools
11 | - build-tools-26.0.1
12 | - build-tools-23.0.1
13 | - build-tools-22.0.0
14 | - build-tools-22.0.1
15 | - build-tools-21.1.2
16 | - build-tools-21.1.1
17 | - android-26
18 | - android-25
19 | - android-24
20 | - addon-google_apis-google-24
21 | - android-23
22 | - addon-google_apis-google-23
23 | - android-22
24 | - addon-google_apis-google-22
25 | - android-21
26 | - addon-google_apis-google-21
27 | - android-19
28 | - addon-google_apis-google-19
29 | - android-18
30 | - addon-google_apis-google-18
31 | - android-17
32 | - addon-google_apis-google-17
33 | - android-16
34 | - addon-google_apis-google-16
35 | - android-15
36 | - addon-google_apis-google-15
37 | - android-10
38 | - android-8
39 | - extra-google-m2repository
40 | - extra-android-m2repository
41 | script: mvn -B install --quiet
42 |
--------------------------------------------------------------------------------
/add-ons/google-apis-10/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | google-apis-10
6 | pom
7 | Android Add-On Google Platform 2.3.3 API 10 (Maps and USB)
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-add-ons
12 | 2.10.0
13 |
14 |
15 |
16 | 10
17 |
18 |
19 |
20 |
21 |
22 | maven-install-plugin
23 |
24 |
25 | maps
26 | install
27 | install-file
28 |
29 | ${addon.googlemaps.groupid}
30 | ${addon.googlemaps.artifactid}
31 | jar
32 | ${jar.version}
33 | ${jar.path}
34 |
35 |
36 |
37 | usb
38 | install
39 | install-file
40 |
41 | ${addon.android.future.usb.groupid}
42 | ${addon.android.future.usb.artifactid}
43 | jar
44 | ${jar.version}
45 | ${usb.jar.path}
46 |
47 |
48 |
49 |
50 |
51 | maven-deploy-plugin
52 |
53 |
54 | maps
55 | deploy
56 | deploy-file
57 |
58 | ${addon.googlemaps.groupid}
59 | ${addon.googlemaps.artifactid}
60 | jar
61 | ${jar.version}
62 | ${jar.path}
63 | ${repo.url}
64 | ${repo.id}
65 |
66 |
67 |
68 | usb
69 | deploy
70 | deploy-file
71 |
72 | ${addon.android.future.usb.groupid}
73 | ${addon.android.future.usb.artifactid}
74 | jar
75 | ${jar.version}
76 | ${usb.jar.path}
77 | ${repo.url}
78 | ${repo.id}
79 |
80 |
81 |
82 |
83 |
84 | org.codehaus.mojo
85 | properties-maven-plugin
86 |
87 |
88 |
89 |
90 |
--------------------------------------------------------------------------------
/add-ons/google-apis-11/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | google-apis-11
6 | pom
7 | Android Add-On Google Platform 3.0 API 11 (Maps)
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-add-ons
12 | 2.10.0
13 |
14 |
15 |
16 | 11
17 |
18 |
19 |
20 |
21 |
22 | maven-install-plugin
23 |
24 |
25 | install
26 | install-file
27 |
28 | ${addon.googlemaps.groupid}
29 | ${addon.googlemaps.artifactid}
30 | jar
31 | ${jar.version}
32 | ${jar.path}
33 |
34 |
35 |
36 |
37 |
38 | maven-deploy-plugin
39 |
40 |
41 | a
42 | deploy
43 | deploy-file
44 |
45 | ${addon.googlemaps.groupid}
46 | ${addon.googlemaps.artifactid}
47 | jar
48 | ${jar.version}
49 | ${jar.path}
50 | ${repo.url}
51 | ${repo.id}
52 |
53 |
54 |
55 |
56 |
57 | org.codehaus.mojo
58 | properties-maven-plugin
59 |
60 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/add-ons/google-apis-12/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | google-apis-12
6 | pom
7 | Android Add-On Google Platform 3.1 API 12 (Maps and USB)
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-add-ons
12 | 2.10.0
13 |
14 |
15 |
16 | 12
17 |
18 |
19 |
20 |
21 |
22 | maven-install-plugin
23 |
24 |
25 | maps
26 | install
27 | install-file
28 |
29 | ${addon.googlemaps.groupid}
30 | ${addon.googlemaps.artifactid}
31 | jar
32 | ${jar.version}
33 | ${jar.path}
34 |
35 |
36 |
37 | usb
38 | install
39 | install-file
40 |
41 | ${addon.android.future.usb.groupid}
42 | ${addon.android.future.usb.artifactid}
43 | jar
44 | ${jar.version}
45 | ${usb.jar.path}
46 |
47 |
48 |
49 |
50 |
51 | maven-deploy-plugin
52 |
53 |
54 | maps
55 | deploy
56 | deploy-file
57 |
58 | ${addon.googlemaps.groupid}
59 | ${addon.googlemaps.artifactid}
60 | jar
61 | ${jar.version}
62 | ${jar.path}
63 | ${repo.url}
64 | ${repo.id}
65 |
66 |
67 |
68 | usb
69 | deploy
70 | deploy-file
71 |
72 | ${addon.android.future.usb.groupid}
73 | ${addon.android.future.usb.artifactid}
74 | jar
75 | ${jar.version}
76 | ${usb.jar.path}
77 | ${repo.url}
78 | ${repo.id}
79 |
80 |
81 |
82 |
83 |
84 |
85 | org.codehaus.mojo
86 | properties-maven-plugin
87 |
88 |
89 |
90 |
91 |
--------------------------------------------------------------------------------
/add-ons/google-apis-13/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | google-apis-13
6 | pom
7 | Android Add-On Google Platform 3.2 API 13 (Maps and USB)
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-add-ons
12 | 2.10.0
13 |
14 |
15 |
16 | 13
17 |
18 |
19 |
20 |
21 |
22 | maven-install-plugin
23 |
24 |
25 | maps
26 | install
27 | install-file
28 |
29 | ${addon.googlemaps.groupid}
30 | ${addon.googlemaps.artifactid}
31 | jar
32 | ${jar.version}
33 | ${jar.path}
34 |
35 |
36 |
37 | usb
38 | install
39 | install-file
40 |
41 | ${addon.android.future.usb.groupid}
42 | ${addon.android.future.usb.artifactid}
43 | jar
44 | ${jar.version}
45 | ${usb.jar.path}
46 |
47 |
48 |
49 |
50 |
51 | maven-deploy-plugin
52 |
53 |
54 | maps
55 | deploy
56 | deploy-file
57 |
58 | ${addon.googlemaps.groupid}
59 | ${addon.googlemaps.artifactid}
60 | jar
61 | ${jar.version}
62 | ${jar.path}
63 | ${repo.url}
64 | ${repo.id}
65 |
66 |
67 |
68 | usb
69 | deploy
70 | deploy-file
71 |
72 | ${addon.android.future.usb.groupid}
73 | ${addon.android.future.usb.artifactid}
74 | jar
75 | ${jar.version}
76 | ${usb.jar.path}
77 | ${repo.url}
78 | ${repo.id}
79 |
80 |
81 |
82 |
83 |
84 | org.codehaus.mojo
85 | properties-maven-plugin
86 |
87 |
88 |
89 |
90 |
--------------------------------------------------------------------------------
/add-ons/google-apis-14/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | google-apis-14
6 | pom
7 | Android Add-On Google Platform 4.0 API 14 (Maps and USB)
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-add-ons
12 | 2.10.0
13 |
14 |
15 |
16 | 14
17 |
18 |
19 |
20 |
21 |
22 | maven-install-plugin
23 |
24 |
25 | maps
26 | install
27 | install-file
28 |
29 | ${addon.googlemaps.groupid}
30 | ${addon.googlemaps.artifactid}
31 | jar
32 | ${jar.version}
33 | ${jar.path}
34 |
35 |
36 |
37 | usb
38 | install
39 | install-file
40 |
41 | ${addon.android.future.usb.groupid}
42 | ${addon.android.future.usb.artifactid}
43 | jar
44 | ${jar.version}
45 | ${usb.jar.path}
46 |
47 |
48 |
49 |
50 |
51 | maven-deploy-plugin
52 |
53 |
54 | maps
55 | deploy
56 | deploy-file
57 |
58 | ${addon.googlemaps.groupid}
59 | ${addon.googlemaps.artifactid}
60 | jar
61 | ${jar.version}
62 | ${jar.path}
63 | ${repo.url}
64 | ${repo.id}
65 |
66 |
67 |
68 | usb
69 | deploy
70 | deploy-file
71 |
72 | ${addon.android.future.usb.groupid}
73 | ${addon.android.future.usb.artifactid}
74 | jar
75 | ${jar.version}
76 | ${usb.jar.path}
77 | ${repo.url}
78 | ${repo.id}
79 |
80 |
81 |
82 |
83 |
84 | org.codehaus.mojo
85 | properties-maven-plugin
86 |
87 |
88 |
89 |
90 |
--------------------------------------------------------------------------------
/add-ons/google-apis-15/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | google-apis-15
6 | pom
7 | Android Add-On Google Platform 4.0.3 API 15 (Maps and USB)
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-add-ons
12 | 2.10.0
13 |
14 |
15 |
16 | 15
17 |
18 |
19 |
20 |
21 |
22 | maven-install-plugin
23 |
24 |
25 | maps
26 | install
27 | install-file
28 |
29 | ${addon.googlemaps.groupid}
30 | ${addon.googlemaps.artifactid}
31 | jar
32 | ${jar.version}
33 | ${jar.path}
34 |
35 |
36 |
37 | usb
38 | install
39 | install-file
40 |
41 | ${addon.android.future.usb.groupid}
42 | ${addon.android.future.usb.artifactid}
43 | jar
44 | ${jar.version}
45 | ${usb.jar.path}
46 |
47 |
48 |
49 |
50 |
51 | maven-deploy-plugin
52 |
53 |
54 | maps
55 | deploy
56 | deploy-file
57 |
58 | ${addon.googlemaps.groupid}
59 | ${addon.googlemaps.artifactid}
60 | jar
61 | ${jar.version}
62 | ${jar.path}
63 | ${repo.url}
64 | ${repo.id}
65 |
66 |
67 |
68 | usb
69 | deploy
70 | deploy-file
71 |
72 | ${addon.android.future.usb.groupid}
73 | ${addon.android.future.usb.artifactid}
74 | jar
75 | ${jar.version}
76 | ${usb.jar.path}
77 | ${repo.url}
78 | ${repo.id}
79 |
80 |
81 |
82 |
83 |
84 | org.codehaus.mojo
85 | properties-maven-plugin
86 |
87 |
88 |
89 |
90 |
--------------------------------------------------------------------------------
/add-ons/google-apis-15/source.properties:
--------------------------------------------------------------------------------
1 | AndroidVersion.ApiLevel=7
2 | Pkg.Revision=1
--------------------------------------------------------------------------------
/add-ons/google-apis-16/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | google-apis-16
6 | pom
7 | Android Add-On Google Platform 4.1 API 16 (Maps and USB)
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-add-ons
12 | 2.10.0
13 |
14 |
15 |
16 | 16
17 |
18 |
19 |
20 |
21 |
22 | maven-install-plugin
23 |
24 |
25 | maps
26 | install
27 | install-file
28 |
29 | ${addon.googlemaps.groupid}
30 | ${addon.googlemaps.artifactid}
31 | jar
32 | ${jar.version}
33 | ${jar.path}
34 |
35 |
36 |
37 | usb
38 | install
39 | install-file
40 |
41 | ${addon.android.future.usb.groupid}
42 | ${addon.android.future.usb.artifactid}
43 | jar
44 | ${jar.version}
45 | ${usb.jar.path}
46 |
47 |
48 |
49 |
50 |
51 | maven-deploy-plugin
52 |
53 |
54 | maps
55 | deploy
56 | deploy-file
57 |
58 | ${addon.googlemaps.groupid}
59 | ${addon.googlemaps.artifactid}
60 | jar
61 | ${jar.version}
62 | ${jar.path}
63 | ${repo.url}
64 | ${repo.id}
65 |
66 |
67 |
68 | usb
69 | deploy
70 | deploy-file
71 |
72 | ${addon.android.future.usb.groupid}
73 | ${addon.android.future.usb.artifactid}
74 | jar
75 | ${jar.version}
76 | ${usb.jar.path}
77 | ${repo.url}
78 | ${repo.id}
79 |
80 |
81 |
82 |
83 |
84 | org.codehaus.mojo
85 | properties-maven-plugin
86 |
87 |
88 |
89 |
90 |
--------------------------------------------------------------------------------
/add-ons/google-apis-16/source.properties:
--------------------------------------------------------------------------------
1 | AndroidVersion.ApiLevel=16
2 | Pkg.Revision=4
3 | jar.simpleVersion=16
--------------------------------------------------------------------------------
/add-ons/google-apis-17/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | google-apis-17
6 | pom
7 | Android Add-On Google Platform 4.2 API 17 (Maps and USB)
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-add-ons
12 | 2.10.0
13 |
14 |
15 |
16 | 17
17 |
18 |
19 |
20 |
21 |
22 | maven-install-plugin
23 |
24 |
25 | maps
26 | install
27 | install-file
28 |
29 | ${addon.googlemaps.groupid}
30 | ${addon.googlemaps.artifactid}
31 | jar
32 | ${jar.version}
33 | ${jar.path}
34 |
35 |
36 |
37 | usb
38 | install
39 | install-file
40 |
41 | ${addon.android.future.usb.groupid}
42 | ${addon.android.future.usb.artifactid}
43 | jar
44 | ${jar.version}
45 | ${usb.jar.path}
46 |
47 |
48 |
49 |
50 |
51 | maven-deploy-plugin
52 |
53 |
54 | maps
55 | deploy
56 | deploy-file
57 |
58 | ${addon.googlemaps.groupid}
59 | ${addon.googlemaps.artifactid}
60 | jar
61 | ${jar.version}
62 | ${jar.path}
63 | ${repo.url}
64 | ${repo.id}
65 |
66 |
67 |
68 | usb
69 | deploy
70 | deploy-file
71 |
72 | ${addon.android.future.usb.groupid}
73 | ${addon.android.future.usb.artifactid}
74 | jar
75 | ${jar.version}
76 | ${usb.jar.path}
77 | ${repo.url}
78 | ${repo.id}
79 |
80 |
81 |
82 |
83 |
84 | org.codehaus.mojo
85 | properties-maven-plugin
86 |
87 |
88 |
89 |
90 |
--------------------------------------------------------------------------------
/add-ons/google-apis-17/source.properties:
--------------------------------------------------------------------------------
1 | AndroidVersion.ApiLevel=17
2 | Pkg.Revision=4
--------------------------------------------------------------------------------
/add-ons/google-apis-18/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | google-apis-18
6 | pom
7 | Android Add-On Google Platform 4.3 API 18 (Maps and USB)
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-add-ons
12 | 2.10.0
13 |
14 |
15 |
16 | 18
17 |
18 |
19 |
20 |
21 |
22 | maven-install-plugin
23 |
24 |
25 | maps
26 | install
27 | install-file
28 |
29 | ${addon.googlemaps.groupid}
30 | ${addon.googlemaps.artifactid}
31 | jar
32 | ${jar.version}
33 | ${jar.path}
34 |
35 |
36 |
37 | usb
38 | install
39 | install-file
40 |
41 | ${addon.android.future.usb.groupid}
42 | ${addon.android.future.usb.artifactid}
43 | jar
44 | ${jar.version}
45 | ${usb.jar.path}
46 |
47 |
48 |
49 |
50 |
51 | maven-deploy-plugin
52 |
53 |
54 | maps
55 | deploy
56 | deploy-file
57 |
58 | ${addon.googlemaps.groupid}
59 | ${addon.googlemaps.artifactid}
60 | jar
61 | ${jar.version}
62 | ${jar.path}
63 | ${repo.url}
64 | ${repo.id}
65 |
66 |
67 |
68 | usb
69 | deploy
70 | deploy-file
71 |
72 | ${addon.android.future.usb.groupid}
73 | ${addon.android.future.usb.artifactid}
74 | jar
75 | ${jar.version}
76 | ${usb.jar.path}
77 | ${repo.url}
78 | ${repo.id}
79 |
80 |
81 |
82 |
83 |
84 | org.codehaus.mojo
85 | properties-maven-plugin
86 |
87 |
88 |
89 |
90 |
--------------------------------------------------------------------------------
/add-ons/google-apis-18/source.properties:
--------------------------------------------------------------------------------
1 | AndroidVersion.ApiLevel=18
2 | Pkg.Revision=4
--------------------------------------------------------------------------------
/add-ons/google-apis-19/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | google-apis-19
6 | pom
7 | Android Add-On Google Platform 4.4 API 19 (Maps and USB)
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-add-ons
12 | 2.10.0
13 |
14 |
15 |
16 | 19
17 |
18 |
19 |
20 |
21 |
22 | maven-install-plugin
23 |
24 |
25 | maps
26 | install
27 | install-file
28 |
29 | ${addon.googlemaps.groupid}
30 | ${addon.googlemaps.artifactid}
31 | jar
32 | ${jar.version}
33 | ${jar.path}
34 |
35 |
36 |
37 | usb
38 | install
39 | install-file
40 |
41 | ${addon.android.future.usb.groupid}
42 | ${addon.android.future.usb.artifactid}
43 | jar
44 | ${jar.version}
45 | ${usb.jar.path}
46 |
47 |
48 |
49 |
50 |
51 | maven-deploy-plugin
52 |
53 |
54 | maps
55 | deploy
56 | deploy-file
57 |
58 | ${addon.googlemaps.groupid}
59 | ${addon.googlemaps.artifactid}
60 | jar
61 | ${jar.version}
62 | ${jar.path}
63 | ${repo.url}
64 | ${repo.id}
65 |
66 |
67 |
68 | usb
69 | deploy
70 | deploy-file
71 |
72 | ${addon.android.future.usb.groupid}
73 | ${addon.android.future.usb.artifactid}
74 | jar
75 | ${jar.version}
76 | ${usb.jar.path}
77 | ${repo.url}
78 | ${repo.id}
79 |
80 |
81 |
82 |
83 |
84 | org.codehaus.mojo
85 | properties-maven-plugin
86 |
87 |
88 |
89 |
90 |
--------------------------------------------------------------------------------
/add-ons/google-apis-19/source.properties:
--------------------------------------------------------------------------------
1 | AndroidVersion.ApiLevel=19
2 | Pkg.Revision=20
--------------------------------------------------------------------------------
/add-ons/google-apis-21/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | google-apis-21
6 | pom
7 | Android Add-On Google Platform 5.0 API 21 (Maps and USB)
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-add-ons
12 | 2.10.0
13 |
14 |
15 |
16 | 21
17 |
18 |
19 |
20 |
21 |
22 | maven-install-plugin
23 |
24 |
25 | maps
26 | install
27 | install-file
28 |
29 | ${addon.googlemaps.groupid}
30 | ${addon.googlemaps.artifactid}
31 | jar
32 | ${jar.version}
33 | ${jar.path}
34 |
35 |
36 |
37 | usb
38 | install
39 | install-file
40 |
41 | ${addon.android.future.usb.groupid}
42 | ${addon.android.future.usb.artifactid}
43 | jar
44 | ${jar.version}
45 | ${usb.jar.path}
46 |
47 |
48 |
49 |
50 |
51 | maven-deploy-plugin
52 |
53 |
54 | maps
55 | deploy
56 | deploy-file
57 |
58 | ${addon.googlemaps.groupid}
59 | ${addon.googlemaps.artifactid}
60 | jar
61 | ${jar.version}
62 | ${jar.path}
63 | ${repo.url}
64 | ${repo.id}
65 |
66 |
67 |
68 | usb
69 | deploy
70 | deploy-file
71 |
72 | ${addon.android.future.usb.groupid}
73 | ${addon.android.future.usb.artifactid}
74 | jar
75 | ${jar.version}
76 | ${usb.jar.path}
77 | ${repo.url}
78 | ${repo.id}
79 |
80 |
81 |
82 |
83 |
84 | org.codehaus.mojo
85 | properties-maven-plugin
86 |
87 |
88 |
89 |
90 |
--------------------------------------------------------------------------------
/add-ons/google-apis-21/source.properties:
--------------------------------------------------------------------------------
1 | AndroidVersion.ApiLevel=21
2 | Pkg.Revision=1
--------------------------------------------------------------------------------
/add-ons/google-apis-22/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | google-apis-22
6 | pom
7 | Android Add-On Google Platform 5.1 API 22 (Maps and USB)
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-add-ons
12 | 2.10.0
13 |
14 |
15 |
16 | 22
17 |
18 |
19 |
20 |
21 |
22 | maven-install-plugin
23 |
24 |
25 | maps
26 | install
27 | install-file
28 |
29 | ${addon.googlemaps.groupid}
30 | ${addon.googlemaps.artifactid}
31 | jar
32 | ${jar.version}
33 | ${jar.path}
34 |
35 |
36 |
37 | usb
38 | install
39 | install-file
40 |
41 | ${addon.android.future.usb.groupid}
42 | ${addon.android.future.usb.artifactid}
43 | jar
44 | ${jar.version}
45 | ${usb.jar.path}
46 |
47 |
48 |
49 |
50 |
51 | maven-deploy-plugin
52 |
53 |
54 | maps
55 | deploy
56 | deploy-file
57 |
58 | ${addon.googlemaps.groupid}
59 | ${addon.googlemaps.artifactid}
60 | jar
61 | ${jar.version}
62 | ${jar.path}
63 | ${repo.url}
64 | ${repo.id}
65 |
66 |
67 |
68 | usb
69 | deploy
70 | deploy-file
71 |
72 | ${addon.android.future.usb.groupid}
73 | ${addon.android.future.usb.artifactid}
74 | jar
75 | ${jar.version}
76 | ${usb.jar.path}
77 | ${repo.url}
78 | ${repo.id}
79 |
80 |
81 |
82 |
83 |
84 | org.codehaus.mojo
85 | properties-maven-plugin
86 |
87 |
88 |
89 |
90 |
--------------------------------------------------------------------------------
/add-ons/google-apis-22/source.properties:
--------------------------------------------------------------------------------
1 | AndroidVersion.ApiLevel=22
2 | Pkg.Revision=1
--------------------------------------------------------------------------------
/add-ons/google-apis-23/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | google-apis-23
6 | pom
7 | Android Add-On Google Platform 6.0 API 23 (Maps and USB)
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-add-ons
12 | 2.10.0
13 |
14 |
15 |
16 | 23
17 |
18 |
19 |
20 |
21 |
22 | maven-install-plugin
23 |
24 |
25 | maps
26 | install
27 | install-file
28 |
29 | ${addon.googlemaps.groupid}
30 | ${addon.googlemaps.artifactid}
31 | jar
32 | ${jar.version}
33 | ${jar.path}
34 |
35 |
36 |
37 | usb
38 | install
39 | install-file
40 |
41 | ${addon.android.future.usb.groupid}
42 | ${addon.android.future.usb.artifactid}
43 | jar
44 | ${jar.version}
45 | ${usb.jar.path}
46 |
47 |
48 |
49 |
50 |
51 | maven-deploy-plugin
52 |
53 |
54 | maps
55 | deploy
56 | deploy-file
57 |
58 | ${addon.googlemaps.groupid}
59 | ${addon.googlemaps.artifactid}
60 | jar
61 | ${jar.version}
62 | ${jar.path}
63 | ${repo.url}
64 | ${repo.id}
65 |
66 |
67 |
68 | usb
69 | deploy
70 | deploy-file
71 |
72 | ${addon.android.future.usb.groupid}
73 | ${addon.android.future.usb.artifactid}
74 | jar
75 | ${jar.version}
76 | ${usb.jar.path}
77 | ${repo.url}
78 | ${repo.id}
79 |
80 |
81 |
82 |
83 |
84 | org.codehaus.mojo
85 | properties-maven-plugin
86 |
87 |
88 |
89 |
90 |
--------------------------------------------------------------------------------
/add-ons/google-apis-23/source.properties:
--------------------------------------------------------------------------------
1 | AndroidVersion.ApiLevel=23
2 | Pkg.Revision=1
--------------------------------------------------------------------------------
/add-ons/google-apis-24/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | google-apis-24
6 | pom
7 | Android Add-On Google Platform 7.0 API 24 (Maps and USB)
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-add-ons
12 | 2.10.0
13 |
14 |
15 |
16 | 24
17 |
18 |
19 |
20 |
21 |
22 | maven-install-plugin
23 |
24 |
25 | maps
26 | install
27 | install-file
28 |
29 | ${addon.googlemaps.groupid}
30 | ${addon.googlemaps.artifactid}
31 | jar
32 | ${jar.version}
33 | ${jar.path}
34 |
35 |
36 |
37 | usb
38 | install
39 | install-file
40 |
41 | ${addon.android.future.usb.groupid}
42 | ${addon.android.future.usb.artifactid}
43 | jar
44 | ${jar.version}
45 | ${usb.jar.path}
46 |
47 |
48 |
49 |
50 |
51 | maven-deploy-plugin
52 |
53 |
54 | maps
55 | deploy
56 | deploy-file
57 |
58 | ${addon.googlemaps.groupid}
59 | ${addon.googlemaps.artifactid}
60 | jar
61 | ${jar.version}
62 | ${jar.path}
63 | ${repo.url}
64 | ${repo.id}
65 |
66 |
67 |
68 | usb
69 | deploy
70 | deploy-file
71 |
72 | ${addon.android.future.usb.groupid}
73 | ${addon.android.future.usb.artifactid}
74 | jar
75 | ${jar.version}
76 | ${usb.jar.path}
77 | ${repo.url}
78 | ${repo.id}
79 |
80 |
81 |
82 |
83 |
84 | org.codehaus.mojo
85 | properties-maven-plugin
86 |
87 |
88 |
89 |
90 |
--------------------------------------------------------------------------------
/add-ons/google-apis-24/source.properties:
--------------------------------------------------------------------------------
1 | AndroidVersion.ApiLevel=24
2 | Pkg.Revision=1
--------------------------------------------------------------------------------
/add-ons/google-apis-7/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | google-apis-7
6 | pom
7 | Android Add-On Google Platform 2.1 API 7 (Maps)
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-add-ons
12 | 2.10.0
13 |
14 |
15 |
16 | 7
17 |
18 |
19 |
20 |
21 |
22 | maven-install-plugin
23 |
24 |
25 | install
26 | install-file
27 |
28 | ${addon.googlemaps.groupid}
29 | ${addon.googlemaps.artifactid}
30 | jar
31 | ${jar.version}
32 | ${jar.path}
33 |
34 |
35 |
36 |
37 |
38 | maven-deploy-plugin
39 |
40 |
41 | a
42 | deploy
43 | deploy-file
44 |
45 | ${addon.googlemaps.groupid}
46 | ${addon.googlemaps.artifactid}
47 | jar
48 | ${jar.version}
49 | ${jar.path}
50 | ${repo.url}
51 | ${repo.id}
52 |
53 |
54 |
55 |
56 |
57 | org.codehaus.mojo
58 | properties-maven-plugin
59 |
60 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/add-ons/google-apis-8/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | google-apis-8
6 | pom
7 | Android Add-On Google Platform 2.2 API 8 (Maps)
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-add-ons
12 | 2.10.0
13 |
14 |
15 |
16 | 8
17 |
18 |
19 |
20 |
21 |
22 | maven-install-plugin
23 |
24 |
25 | install
26 | install-file
27 |
28 | ${addon.googlemaps.groupid}
29 | ${addon.googlemaps.artifactid}
30 | jar
31 | ${jar.version}
32 | ${jar.path}
33 |
34 |
35 |
36 |
37 |
38 | maven-deploy-plugin
39 |
40 |
41 | a
42 | deploy
43 | deploy-file
44 |
45 | ${addon.googlemaps.groupid}
46 | ${addon.googlemaps.artifactid}
47 | jar
48 | ${jar.version}
49 | ${jar.path}
50 | ${repo.url}
51 | ${repo.id}
52 |
53 |
54 |
55 |
56 |
57 | org.codehaus.mojo
58 | properties-maven-plugin
59 |
60 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/add-ons/google-gdk-15/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | google-gdk-15
6 | pom
7 | Google Glass Development Kit (GDK) API 15
8 | A set of Android SDK features geared toward Google Glass development
9 |
10 |
11 | com.simpligility.android.sdk-deployer
12 | android-add-ons
13 | 2.4.0
14 |
15 |
16 |
17 | 15
18 |
19 |
20 |
21 |
22 |
23 | maven-install-plugin
24 |
25 |
26 | maps
27 | install
28 | install-file
29 |
30 | ${addon.android.gdk.groupid}
31 | ${addon.android.gdk.artifactid}
32 | jar
33 | ${jar.version}
34 | ${gdk.jar.path}
35 |
36 |
37 |
38 |
39 |
40 | maven-deploy-plugin
41 |
42 |
43 | maps
44 | deploy
45 | deploy-file
46 |
47 | ${addon.android.gdk.groupid}
48 | ${addon.android.gdk.artifactid}
49 | jar
50 | ${jar.version}
51 | ${gdk.jar.path}
52 | ${repo.url}
53 | ${repo.id}
54 |
55 |
56 |
57 |
58 |
59 | org.codehaus.mojo
60 | properties-maven-plugin
61 |
62 |
63 |
64 |
65 |
--------------------------------------------------------------------------------
/add-ons/google-gdk-19/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | google-gdk-19
6 | pom
7 | Google Glass Development Kit (GDK) API 19
8 | A set of Android SDK features geared toward Google Glass development on KitKat
9 |
10 |
11 | com.simpligility.android.sdk-deployer
12 | android-add-ons
13 | 2.10.0
14 |
15 |
16 |
17 | 19
18 |
19 |
20 |
21 |
22 |
23 | maven-install-plugin
24 |
25 |
26 | maps
27 | install
28 | install-file
29 |
30 | ${addon.android.gdk.groupid}
31 | ${addon.android.gdk.artifactid}
32 | jar
33 | ${jar.version}
34 | ${gdk.jar.path}
35 |
36 |
37 |
38 |
39 |
40 | maven-deploy-plugin
41 |
42 |
43 | maps
44 | deploy
45 | deploy-file
46 |
47 | ${addon.android.gdk.groupid}
48 | ${addon.android.gdk.artifactid}
49 | jar
50 | ${jar.version}
51 | ${gdk.jar.path}
52 | ${repo.url}
53 | ${repo.id}
54 |
55 |
56 |
57 |
58 |
59 | org.codehaus.mojo
60 | properties-maven-plugin
61 |
62 |
63 | initialize
64 |
65 | read-project-properties
66 |
67 |
68 |
69 | ${sdk.addons.path}/${gdk.directory}/source.properties
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
--------------------------------------------------------------------------------
/add-ons/google-gdk-19/pom.xml~:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | google-gdk-19
6 | pom
7 | Google Glass Development Kit (GDK) API 19
8 | A set of Android SDK features geared toward Google Glass development on KitKat
9 |
10 |
11 | com.simpligility.android.sdk-deployer
12 | android-add-ons
13 | 2.4.0
14 |
15 |
16 |
17 | 19
18 |
19 |
20 |
21 |
22 |
23 | maven-install-plugin
24 |
25 |
26 | maps
27 | install
28 | install-file
29 |
30 | ${addon.android.gdk.groupid}
31 | ${addon.android.gdk.artifactid}
32 | jar
33 | ${jar.version}
34 | ${gdk.jar.path}
35 |
36 |
37 |
38 |
39 |
40 | maven-deploy-plugin
41 |
42 |
43 | maps
44 | deploy
45 | deploy-file
46 |
47 | ${addon.android.gdk.groupid}
48 | ${addon.android.gdk.artifactid}
49 | jar
50 | ${jar.version}
51 | ${gdk.jar.path}
52 | ${repo.url}
53 | ${repo.id}
54 |
55 |
56 |
57 |
58 |
59 | org.codehaus.mojo
60 | properties-maven-plugin
61 |
62 |
63 |
64 |
65 |
--------------------------------------------------------------------------------
/add-ons/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | android-add-ons
6 | pom
7 | Android Add-Ons
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | maven-android-sdk-deployer
12 | 2.10.0
13 |
14 |
15 |
16 | ${sdk.addons.path}/${addon.directory}/libs/maps.jar
17 | ${AndroidVersion.ApiLevel}_r${Pkg.Revision}
18 | addon-google_apis-google-${jar.simpleVersion}
19 | addon-google_gdk-google-${jar.simpleVersion}
20 | ${sdk.addons.path}/${addon.directory}/libs/usb.jar
21 | ${sdk.addons.path}/${gdk.directory}/libs/gdk.jar
22 |
23 |
24 |
25 |
26 |
27 |
28 | org.codehaus.mojo
29 | properties-maven-plugin
30 |
31 |
32 | initialize
33 |
34 | read-project-properties
35 |
36 |
37 |
38 |
39 | ${project.basedir}/source.properties
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 | all
52 |
53 | true
54 |
55 |
56 |
57 |
58 | google-apis-15
59 | google-apis-16
60 | google-apis-17
61 | google-apis-18
62 | google-apis-19
63 | google-apis-21
64 | google-apis-22
65 | google-apis-23
66 | google-apis-24
67 |
68 |
69 |
70 |
71 |
72 |
73 | 2.1
74 |
75 | google-apis-7
76 |
77 |
78 |
79 | 2.2
80 |
81 | google-apis-8
82 |
83 |
84 |
85 | 2.3.3
86 |
87 | google-apis-10
88 |
89 |
90 |
91 | 3.0
92 |
93 | google-apis-11
94 |
95 |
96 |
97 | 3.1
98 |
99 | google-apis-12
100 |
101 |
102 |
103 | 3.2
104 |
105 | google-apis-13
106 |
107 |
108 |
109 | 4.0
110 |
111 | google-apis-14
112 |
113 |
114 |
115 | 4.0.3
116 |
117 | google-apis-15
118 |
119 |
120 |
121 |
122 |
123 | 4.1
124 |
125 | google-apis-16
126 |
127 |
128 |
129 | 4.2
130 |
131 | google-apis-17
132 |
133 |
134 |
135 | 4.3
136 |
137 | google-apis-18
138 |
139 |
140 |
141 | 4.4
142 |
143 | google-apis-19
144 | google-gdk-19
145 |
146 |
147 |
148 | 5.0
149 |
150 | google-apis-21
151 |
152 |
153 |
154 | 5.1
155 |
156 | google-apis-22
157 |
158 |
159 |
160 | 6.0
161 |
162 | google-apis-23
163 |
164 |
165 |
166 | 7.0
167 |
168 | google-apis-24
169 |
170 |
171 |
172 |
173 |
--------------------------------------------------------------------------------
/extras/compatibility-v13/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | compatibility-v13
6 | pom
7 | Android Compatibility Extra V13
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-extras
12 | 2.10.0
13 |
14 |
15 |
16 | ${sdk.extras.compatibility.path}/v13/android-support-v13.jar
17 | ${extras.compatibility.v13.version.prefix}${Pkg.Revision}
18 |
19 |
20 |
21 |
22 |
23 | maven-resources-plugin
24 | 2.4.3
25 |
26 |
27 | generate-resources
28 |
29 | copy-resources
30 |
31 |
32 | ${project.build.directory}/sources/
33 |
34 |
35 | ${sdk.extras.compatibility.path}/v13/src/java/
36 |
37 |
38 | ${sdk.extras.compatibility.path}/v4/src/java/
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 | maven-jar-plugin
48 | 2.4
49 |
50 |
51 | generate-resources
52 |
53 | jar
54 |
55 |
56 | ${project.build.directory}/sources
57 |
58 | **/*
59 |
60 | support-sources
61 |
62 |
63 |
64 |
65 |
66 |
67 | maven-install-plugin
68 |
69 |
70 | install
71 | install-file
72 |
73 | ${extras.compatibility.v13.groupid}
74 | ${extras.compatibility.v13.artifactid}
75 | jar
76 | ${jar.version}
77 | ${jar.path}
78 | ${project.build.directory}/support-sources.jar
79 |
80 |
81 |
82 |
83 |
84 | maven-deploy-plugin
85 |
86 |
87 | a
88 | deploy
89 | deploy-file
90 |
91 | ${extras.compatibility.v13.groupid}
92 | ${extras.compatibility.v13.artifactid}
93 | jar
94 | ${jar.version}
95 | ${jar.path}
96 | ${project.build.directory}/support-sources.jar
97 | ${repo.url}
98 | ${repo.id}
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
--------------------------------------------------------------------------------
/extras/compatibility-v4/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | compatibility-v4
6 | pom
7 | Android Compatibility Extra V4
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-extras
12 | 2.10.0
13 |
14 |
15 |
16 | ${sdk.extras.compatibility.path}/v4/android-support-v4.jar
17 | ${extras.compatibility.v4.version.prefix}${Pkg.Revision}
18 |
19 |
20 |
21 |
22 |
23 | maven-jar-plugin
24 | 2.4
25 |
26 |
27 | generate-resources
28 |
29 | jar
30 |
31 |
32 | ${sdk.extras.compatibility.path}/v4/src/java
33 |
34 | **/*
35 |
36 | support-sources
37 |
38 |
39 |
40 |
41 |
42 |
43 | maven-install-plugin
44 |
45 |
46 | install
47 | install-file
48 |
49 | ${extras.compatibility.v4.groupid}
50 | ${extras.compatibility.v4.artifactid}
51 | jar
52 | ${jar.version}
53 | ${jar.path}
54 | ${project.build.directory}/support-sources.jar
55 |
56 |
57 |
58 |
59 |
60 | maven-deploy-plugin
61 |
62 |
63 | a
64 | deploy
65 | deploy-file
66 |
67 | ${extras.compatibility.v4.groupid}
68 | ${extras.compatibility.v4.artifactid}
69 | jar
70 | ${jar.version}
71 | ${jar.path}
72 | ${project.build.directory}/support-sources.jar
73 | ${repo.url}
74 | ${repo.id}
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
--------------------------------------------------------------------------------
/extras/compatibility-v7-gridlayout/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | compatibility-v7-gridlayout
6 | apklib
7 | Android Compatibility Extra V7 Gridlayout Library
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-extras
12 | 2.10.0
13 |
14 |
15 |
16 | compatibility-v7-gridlayout
17 | ${sdk.extras.compatibility.path}/v7/gridlayout/libs/android-support-v7-gridlayout.jar
18 | ${extras.compatibility.v7.version.prefix}${Pkg.Revision}
19 |
20 |
21 |
22 |
23 | com.google.android
24 | android
25 | 1.5_r4
26 | provided
27 |
28 |
29 |
30 |
31 |
32 |
33 | com.simpligility.maven.plugins
34 | android-maven-plugin
35 | true
36 |
37 | ${sdk.extras.compatibility.path}/v7/gridlayout/AndroidManifest.xml
38 | ${sdk.extras.compatibility.path}/v7/gridlayout/src
39 | ${sdk.extras.compatibility.path}/v7/gridlayout/res
40 |
41 |
42 |
43 |
44 | maven-jar-plugin
45 | 2.4
46 |
47 |
48 | generate-resources
49 |
50 | jar
51 |
52 |
53 | ${sdk.extras.compatibility.path}/v7/gridlayout/src
54 |
55 | **/*
56 |
57 | support-sources
58 |
59 |
60 |
61 |
62 |
63 |
64 | maven-install-plugin
65 |
66 |
67 | jar-file
68 | install
69 | install-file
70 |
71 | ${extras.compatibility.v7.groupid}
72 | ${android.support.artifactid}
73 | jar
74 | ${jar.version}
75 | ${jar.path}
76 | ${project.build.directory}/support-sources.jar
77 |
78 |
79 |
80 | apklib-file
81 | install
82 | install-file
83 |
84 | ${extras.compatibility.v7.groupid}
85 | ${android.support.artifactid}
86 | apklib
87 | ${jar.version}
88 | target/${android.support.artifactid}-${project.version}.apklib
89 |
90 |
91 |
92 |
93 |
94 | maven-deploy-plugin
95 |
96 |
97 | jar-file
98 | deploy
99 | deploy-file
100 |
101 | ${extras.compatibility.v7.groupid}
102 | ${android.support.artifactid}
103 | jar
104 | ${jar.version}
105 | ${jar.path}
106 | ${project.build.directory}/support-sources.jar
107 | ${repo.url}
108 | ${repo.id}
109 |
110 |
111 |
112 | apklib-file
113 | deploy
114 | deploy-file
115 |
116 | ${extras.compatibility.v7.groupid}
117 | ${android.support.artifactid}
118 | apklib
119 | ${jar.version}
120 | target/${android.support.artifactid}-${project.version}.apklib
121 | ${repo.url}
122 | ${repo.id}
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
--------------------------------------------------------------------------------
/extras/multidex/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | multidex
6 | pom
7 | Android MultiDex
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-extras
12 | 2.10.0
13 |
14 |
15 |
16 | ${sdk.extras.multidex.path}/libs/android-support-multidex.jar
17 | ${Pkg.Revision}
18 |
19 |
20 |
21 |
22 | maven-install-plugin
23 |
24 |
25 | install
26 | install-file
27 |
28 | ${extras.multidex.groupId}
29 | ${extras.multidex.artifactId}
30 | jar
31 | ${jar.version}
32 | ${jar.path}
33 |
34 |
35 |
36 |
37 |
38 | maven-deploy-plugin
39 |
40 |
41 | a
42 | deploy
43 | deploy-file
44 |
45 | ${extras.multidex.groupId}
46 | ${extras.multidex.artifactId}
47 | jar
48 | ${jar.version}
49 | ${jar.path}
50 | ${repo.url}
51 | ${repo.id}
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
--------------------------------------------------------------------------------
/extras/play-apk-expansion/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | android-extras-apk-expansion
6 | pom
7 | Android Extras - Apk Expansion
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-extras
12 | 2.10.0
13 |
14 |
15 |
16 |
17 |
18 | org.codehaus.mojo
19 | properties-maven-plugin
20 |
21 |
22 | initialize
23 |
24 | read-project-properties
25 |
26 |
27 |
28 | ${sdk.extras.path}/google/market_apk_expansion/source.properties
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 | all
40 |
41 | true
42 |
43 |
44 | zip-file
45 | downloader-library
46 |
47 |
48 |
49 |
50 |
--------------------------------------------------------------------------------
/extras/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 | 4.0.0
5 | com.simpligility.android.sdk-deployer
6 | android-extras
7 | pom
8 | Android Extras
9 |
10 |
11 | com.simpligility.android.sdk-deployer
12 | maven-android-sdk-deployer
13 | 2.10.0
14 |
15 |
16 |
17 |
18 |
19 | org.apache.maven.plugins
20 | maven-source-plugin
21 |
22 |
23 | attach-sources
24 | install
25 |
26 | jar-no-fork
27 |
28 |
29 |
30 |
31 |
32 | org.apache.maven.plugins
33 | maven-javadoc-plugin
34 |
35 |
36 | attach-javadocs
37 | install
38 |
39 | jar
40 |
41 |
42 |
43 |
44 | ${basedir}/target/generated-sources
45 |
46 | **/R.java
47 |
48 |
49 |
50 |
51 | org.codehaus.mojo
52 | properties-maven-plugin
53 |
54 |
55 | initialize
56 |
57 | read-project-properties
58 |
59 |
60 |
61 | ${sdk.extras.compatibility.path}/source.properties
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 | all
73 |
74 | true
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
--------------------------------------------------------------------------------
/install_platforms_locally.sh:
--------------------------------------------------------------------------------
1 | cd platforms
2 | mvn clean install -P allLocal
3 | cd ..
--------------------------------------------------------------------------------
/install_repositories_locally.sh:
--------------------------------------------------------------------------------
1 | cd repositories
2 | mvn clean install
3 | cd ..
--------------------------------------------------------------------------------
/platforms/android-10/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | android-10
6 | pom
7 | Android Platform 2.3.3 API 10
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-platforms
12 | 2.10.0
13 |
14 |
15 |
16 | 2.3.3
17 |
18 |
19 |
20 |
21 |
22 |
23 | maven-install-plugin
24 |
25 |
26 | install
27 | install-file
28 |
29 | ${platform.android.groupid}
30 | ${platform.android.artifactid}
31 | jar
32 | ${jar.version}
33 | ${jar.path}
34 | ${javadoc.path}
35 |
36 |
37 |
38 |
39 |
40 | maven-deploy-plugin
41 |
42 |
43 | a
44 | deploy
45 | deploy-file
46 |
47 | ${platform.android.groupid}
48 | ${platform.android.artifactid}
49 | jar
50 | ${jar.version}
51 | ${jar.path}
52 | ${repo.url}
53 | ${repo.id}
54 | ${javadoc.path}
55 |
56 |
57 |
58 |
59 |
60 | org.codehaus.mojo
61 | properties-maven-plugin
62 |
63 |
64 |
65 |
66 |
--------------------------------------------------------------------------------
/platforms/android-11/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | android-11
6 | pom
7 | Android Platform 3.0 API 11
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-platforms
12 | 2.10.0
13 |
14 |
15 |
16 | 3.0
17 |
18 |
19 |
20 |
21 |
22 |
23 | maven-install-plugin
24 |
25 |
26 | install
27 | install-file
28 |
29 | ${platform.android.groupid}
30 | ${platform.android.artifactid}
31 | jar
32 | ${jar.version}
33 | ${jar.path}
34 | ${javadoc.path}
35 |
36 |
37 |
38 |
39 |
40 | maven-deploy-plugin
41 |
42 |
43 | a
44 | deploy
45 | deploy-file
46 |
47 | ${platform.android.groupid}
48 | ${platform.android.artifactid}
49 | jar
50 | ${jar.version}
51 | ${jar.path}
52 | ${repo.url}
53 | ${repo.id}
54 | ${javadoc.path}
55 |
56 |
57 |
58 |
59 |
60 | org.codehaus.mojo
61 | properties-maven-plugin
62 |
63 |
64 |
65 |
66 |
--------------------------------------------------------------------------------
/platforms/android-12/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | android-12
6 | pom
7 | Android Platform 3.1 API 12
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-platforms
12 | 2.10.0
13 |
14 |
15 |
16 | 3.1
17 |
18 |
19 |
20 |
21 |
22 |
23 | maven-install-plugin
24 |
25 |
26 | install
27 | install-file
28 |
29 | ${platform.android.groupid}
30 | ${platform.android.artifactid}
31 | jar
32 | ${jar.version}
33 | ${jar.path}
34 | ${javadoc.path}
35 |
36 |
37 |
38 |
39 |
40 | maven-deploy-plugin
41 |
42 |
43 | a
44 | deploy
45 | deploy-file
46 |
47 | ${platform.android.groupid}
48 | ${platform.android.artifactid}
49 | jar
50 | ${jar.version}
51 | ${jar.path}
52 | ${repo.url}
53 | ${repo.id}
54 | ${javadoc.path}
55 |
56 |
57 |
58 |
59 |
60 | org.codehaus.mojo
61 | properties-maven-plugin
62 |
63 |
64 |
65 |
66 |
--------------------------------------------------------------------------------
/platforms/android-13/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | android-13
6 | pom
7 | Android Platform 3.2 API 13
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-platforms
12 | 2.10.0
13 |
14 |
15 |
16 | 3.2
17 |
18 |
19 |
20 |
21 |
22 |
23 | maven-install-plugin
24 |
25 |
26 | install
27 | install-file
28 |
29 | ${platform.android.groupid}
30 | ${platform.android.artifactid}
31 | jar
32 | ${jar.version}
33 | ${jar.path}
34 |
35 |
36 |
37 |
38 |
39 | maven-deploy-plugin
40 |
41 |
42 | a
43 | deploy
44 | deploy-file
45 |
46 | ${platform.android.groupid}
47 | ${platform.android.artifactid}
48 | jar
49 | ${jar.version}
50 | ${jar.path}
51 | ${repo.url}
52 | ${repo.id}
53 |
54 |
55 |
56 |
57 |
58 | org.codehaus.mojo
59 | properties-maven-plugin
60 |
61 |
62 |
63 |
64 |
--------------------------------------------------------------------------------
/platforms/android-14/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | android-14
6 | pom
7 | Android Platform 4.0 API 14
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-platforms
12 | 2.10.0
13 |
14 |
15 |
16 | 4.0
17 |
18 |
19 |
20 |
21 |
22 |
23 | maven-install-plugin
24 |
25 |
26 | install
27 | install-file
28 |
29 | ${platform.android.groupid}
30 | ${platform.android.artifactid}
31 | jar
32 | ${jar.version}
33 | ${jar.path}
34 | ${javadoc.path}
35 |
36 |
37 |
38 |
39 |
40 | maven-deploy-plugin
41 |
42 |
43 | a
44 | deploy
45 | deploy-file
46 |
47 | ${platform.android.groupid}
48 | ${platform.android.artifactid}
49 | jar
50 | ${jar.version}
51 | ${jar.path}
52 | ${repo.url}
53 | ${repo.id}
54 | ${javadoc.path}
55 |
56 |
57 |
58 |
59 |
60 | org.codehaus.mojo
61 | properties-maven-plugin
62 |
63 |
64 |
65 |
66 |
--------------------------------------------------------------------------------
/platforms/android-15/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | android-15
6 | pom
7 | Android Platform 4.0.3 API 15
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-platforms
12 | 2.10.0
13 |
14 |
15 |
16 | 4.0.3
17 |
18 |
19 |
20 |
21 |
22 | maven-jar-plugin
23 | 2.4
24 |
25 |
26 | generate-resources
27 |
28 | jar
29 |
30 |
31 | ${android.sdk.path}/sources/android-15
32 |
33 | **/*
34 |
35 | android-sources
36 |
37 |
38 |
39 |
40 |
41 | maven-install-plugin
42 |
43 |
44 | install
45 | install-file
46 |
47 | ${platform.android.groupid}
48 | ${platform.android.artifactid}
49 | jar
50 | ${jar.version}
51 | ${jar.path}
52 | ${javadoc.path}
53 | ${project.build.directory}/android-sources.jar
54 |
55 |
56 |
57 |
58 |
59 | maven-deploy-plugin
60 |
61 |
62 | a
63 | deploy
64 | deploy-file
65 |
66 | ${platform.android.groupid}
67 | ${platform.android.artifactid}
68 | jar
69 | ${jar.version}
70 | ${jar.path}
71 | ${repo.url}
72 | ${repo.id}
73 | ${javadoc.path}
74 | ${project.build.directory}/android-sources.jar
75 |
76 |
77 |
78 |
79 |
80 | org.codehaus.mojo
81 | properties-maven-plugin
82 |
83 |
84 |
85 |
86 |
--------------------------------------------------------------------------------
/platforms/android-16/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | android-16
6 | pom
7 | Android Platform 4.1 API 16
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-platforms
12 | 2.10.0
13 |
14 |
15 |
16 | 4.1
17 |
18 |
19 |
20 |
21 |
22 |
23 | maven-install-plugin
24 |
25 |
26 | install
27 | install-file
28 |
29 | ${platform.android.groupid}
30 | ${platform.android.artifactid}
31 | jar
32 | ${jar.version}
33 | ${jar.path}
34 | ${javadoc.path}
35 |
36 |
37 |
38 | uiautomator-jar
39 | install
40 | install-file
41 |
42 | ${platform.uiautomator.groupid}
43 | ${platform.uiautomator.artifactid}
44 | jar
45 | ${jar.version}
46 | ${uiautomator.path}
47 |
48 |
49 |
50 |
51 |
52 | maven-deploy-plugin
53 |
54 |
55 | a
56 | deploy
57 | deploy-file
58 |
59 | ${platform.android.groupid}
60 | ${platform.android.artifactid}
61 | jar
62 | ${jar.version}
63 | ${jar.path}
64 | ${repo.url}
65 | ${repo.id}
66 | ${javadoc.path}
67 |
68 |
69 |
70 | uiautomator-jar
71 | deploy
72 | deploy-file
73 |
74 | ${platform.uiautomator.groupid}
75 | ${platform.uiautomator.artifactid}
76 | jar
77 | ${jar.version}
78 | ${uiautomator.path}
79 | ${repo.url}
80 | ${repo.id}
81 |
82 |
83 |
84 |
85 |
86 | org.codehaus.mojo
87 | properties-maven-plugin
88 |
89 |
90 |
91 |
92 |
--------------------------------------------------------------------------------
/platforms/android-17/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | android-17
6 | pom
7 | Android Platform 4.2 API 17
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-platforms
12 | 2.10.0
13 |
14 |
15 |
16 | 4.2
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | maven-jar-plugin
25 | 2.4
26 |
27 |
28 | generate-resources
29 |
30 | jar
31 |
32 |
33 | ${android.sdk.path}/sources/android-17
34 |
35 | **/*
36 |
37 | android-sources
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 | maven-install-plugin
46 |
47 |
48 | android-jar
49 | install
50 | install-file
51 |
52 | ${platform.android.groupid}
53 | ${platform.android.artifactid}
54 | jar
55 | ${jar.version}
56 | ${jar.path}
57 | ${javadoc.path}
58 | ${project.build.directory}/android-sources.jar
59 |
60 |
61 |
62 | uiautomator-jar
63 | install
64 | install-file
65 |
66 | ${platform.uiautomator.groupid}
67 | ${platform.uiautomator.artifactid}
68 | jar
69 | ${jar.version}
70 | ${uiautomator.path}
71 |
72 |
73 |
74 |
75 |
76 | maven-deploy-plugin
77 |
78 |
79 | android-jar
80 | deploy
81 | deploy-file
82 |
83 | ${platform.android.groupid}
84 | ${platform.android.artifactid}
85 | jar
86 | ${jar.version}
87 | ${jar.path}
88 | ${repo.url}
89 | ${repo.id}
90 | ${javadoc.path}
91 | ${project.build.directory}/android-sources.jar
92 |
93 |
94 |
95 | uiautomator-jar
96 | deploy
97 | deploy-file
98 |
99 | ${platform.uiautomator.groupid}
100 | ${platform.uiautomator.artifactid}
101 | jar
102 | ${jar.version}
103 | ${uiautomator.path}
104 | ${repo.url}
105 | ${repo.id}
106 |
107 |
108 |
109 |
110 |
111 |
112 | org.codehaus.mojo
113 | properties-maven-plugin
114 |
115 |
116 |
117 |
118 |
--------------------------------------------------------------------------------
/platforms/android-18/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | android-18
6 | pom
7 | Android Platform 4.3 API 18
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-platforms
12 | 2.10.0
13 |
14 |
15 |
16 | 4.3
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | maven-jar-plugin
25 | 2.4
26 |
27 |
28 | generate-resources
29 |
30 | jar
31 |
32 |
33 | ${android.sdk.path}/sources/android-18
34 |
35 | **/*
36 |
37 | android-sources
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 | maven-install-plugin
46 |
47 |
48 | android-jar
49 | install
50 | install-file
51 |
52 | ${platform.android.groupid}
53 | ${platform.android.artifactid}
54 | jar
55 | ${jar.version}
56 | ${jar.path}
57 | ${javadoc.path}
58 | ${project.build.directory}/android-sources.jar
59 |
60 |
61 |
62 | uiautomator-jar
63 | install
64 | install-file
65 |
66 | ${platform.uiautomator.groupid}
67 | ${platform.uiautomator.artifactid}
68 | jar
69 | ${jar.version}
70 | ${uiautomator.path}
71 |
72 |
73 |
74 |
75 |
76 | maven-deploy-plugin
77 |
78 |
79 | android-jar
80 | deploy
81 | deploy-file
82 |
83 | ${platform.android.groupid}
84 | ${platform.android.artifactid}
85 | jar
86 | ${jar.version}
87 | ${jar.path}
88 | ${repo.url}
89 | ${repo.id}
90 | ${javadoc.path}
91 | ${project.build.directory}/android-sources.jar
92 |
93 |
94 |
95 | uiautomator-jar
96 | deploy
97 | deploy-file
98 |
99 | ${platform.uiautomator.groupid}
100 | ${platform.uiautomator.artifactid}
101 | jar
102 | ${jar.version}
103 | ${uiautomator.path}
104 | ${repo.url}
105 | ${repo.id}
106 |
107 |
108 |
109 |
110 |
111 |
112 | org.codehaus.mojo
113 | properties-maven-plugin
114 |
115 |
116 |
117 |
118 |
--------------------------------------------------------------------------------
/platforms/android-19/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | android-19
6 | pom
7 | Android Platform 4.4 API 19
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-platforms
12 | 2.10.0
13 |
14 |
15 |
16 | 4.4
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | maven-jar-plugin
25 | 2.4
26 |
27 |
28 | generate-resources
29 |
30 | jar
31 |
32 |
33 | ${android.sdk.path}/sources/android-19
34 |
35 | **/*
36 |
37 | android-sources
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 | maven-install-plugin
46 |
47 |
48 | android-jar
49 | install
50 | install-file
51 |
52 | ${platform.android.groupid}
53 | ${platform.android.artifactid}
54 | jar
55 | ${jar.version}
56 | ${jar.path}
57 | ${javadoc.path}
58 | ${project.build.directory}/android-sources.jar
59 |
60 |
61 |
62 | uiautomator-jar
63 | install
64 | install-file
65 |
66 | ${platform.uiautomator.groupid}
67 | ${platform.uiautomator.artifactid}
68 | jar
69 | ${jar.version}
70 | ${uiautomator.path}
71 |
72 |
73 |
74 |
75 |
76 | maven-deploy-plugin
77 |
78 |
79 | android-jar
80 | deploy
81 | deploy-file
82 |
83 | ${platform.android.groupid}
84 | ${platform.android.artifactid}
85 | jar
86 | ${jar.version}
87 | ${jar.path}
88 | ${repo.url}
89 | ${repo.id}
90 | ${javadoc.path}
91 | ${project.build.directory}/android-sources.jar
92 |
93 |
94 |
95 | uiautomator-jar
96 | deploy
97 | deploy-file
98 |
99 | ${platform.uiautomator.groupid}
100 | ${platform.uiautomator.artifactid}
101 | jar
102 | ${jar.version}
103 | ${uiautomator.path}
104 | ${repo.url}
105 | ${repo.id}
106 |
107 |
108 |
109 |
110 |
111 |
112 | org.codehaus.mojo
113 | properties-maven-plugin
114 |
115 |
116 |
117 |
118 |
--------------------------------------------------------------------------------
/platforms/android-20/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | android-20
6 | pom
7 | Android Platform 4.4W API 20
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-platforms
12 | 2.10.0
13 |
14 |
15 |
16 | 4.4W
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | maven-jar-plugin
25 | 2.4
26 |
27 |
28 | generate-resources
29 |
30 | jar
31 |
32 |
33 | ${android.sdk.path}/sources/android-20
34 |
35 | **/*
36 |
37 | android-sources
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 | maven-install-plugin
46 |
47 |
48 | android-jar
49 | install
50 | install-file
51 |
52 | ${platform.android.groupid}
53 | ${platform.android.artifactid}
54 | jar
55 | ${jar.version}
56 | ${jar.path}
57 | ${javadoc.path}
58 | ${project.build.directory}/android-sources.jar
59 |
60 |
61 |
62 | uiautomator-jar
63 | install
64 | install-file
65 |
66 | ${platform.uiautomator.groupid}
67 | ${platform.uiautomator.artifactid}
68 | jar
69 | ${jar.version}
70 | ${uiautomator.path}
71 |
72 |
73 |
74 |
75 |
76 | maven-deploy-plugin
77 |
78 |
79 | android-jar
80 | deploy
81 | deploy-file
82 |
83 | ${platform.android.groupid}
84 | ${platform.android.artifactid}
85 | jar
86 | ${jar.version}
87 | ${jar.path}
88 | ${repo.url}
89 | ${repo.id}
90 | ${javadoc.path}
91 | ${project.build.directory}/android-sources.jar
92 |
93 |
94 |
95 | uiautomator-jar
96 | deploy
97 | deploy-file
98 |
99 | ${platform.uiautomator.groupid}
100 | ${platform.uiautomator.artifactid}
101 | jar
102 | ${jar.version}
103 | ${uiautomator.path}
104 | ${repo.url}
105 | ${repo.id}
106 |
107 |
108 |
109 |
110 |
111 |
112 | org.codehaus.mojo
113 | properties-maven-plugin
114 |
115 |
116 |
117 |
118 |
--------------------------------------------------------------------------------
/platforms/android-21/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | android-21
6 | pom
7 | Android Platform 5.0 API 21
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-platforms
12 | 2.10.0
13 |
14 |
15 |
16 | 5.0
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | maven-jar-plugin
25 | 2.4
26 |
27 |
28 | generate-resources
29 |
30 | jar
31 |
32 |
33 | ${android.sdk.path}/sources/android-21
34 |
35 | **/*
36 |
37 | android-sources
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 | maven-install-plugin
46 |
47 |
48 | android-jar
49 | install
50 | install-file
51 |
52 | ${platform.android.groupid}
53 | ${platform.android.artifactid}
54 | jar
55 | ${jar.version}
56 | ${jar.path}
57 | ${javadoc.path}
58 | ${project.build.directory}/android-sources.jar
59 |
60 |
61 |
62 | uiautomator-jar
63 | install
64 | install-file
65 |
66 | ${platform.uiautomator.groupid}
67 | ${platform.uiautomator.artifactid}
68 | jar
69 | ${jar.version}
70 | ${uiautomator.path}
71 |
72 |
73 |
74 |
75 |
76 | maven-deploy-plugin
77 |
78 |
79 | android-jar
80 | deploy
81 | deploy-file
82 |
83 | ${platform.android.groupid}
84 | ${platform.android.artifactid}
85 | jar
86 | ${jar.version}
87 | ${jar.path}
88 | ${repo.url}
89 | ${repo.id}
90 | ${javadoc.path}
91 | ${project.build.directory}/android-sources.jar
92 |
93 |
94 |
95 | uiautomator-jar
96 | deploy
97 | deploy-file
98 |
99 | ${platform.uiautomator.groupid}
100 | ${platform.uiautomator.artifactid}
101 | jar
102 | ${jar.version}
103 | ${uiautomator.path}
104 | ${repo.url}
105 | ${repo.id}
106 |
107 |
108 |
109 |
110 |
111 |
112 | org.codehaus.mojo
113 | properties-maven-plugin
114 |
115 |
116 |
117 |
118 |
--------------------------------------------------------------------------------
/platforms/android-22/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | android-22
6 | pom
7 | Android Platform 5.1 API 22
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-platforms
12 | 2.10.0
13 |
14 |
15 |
16 | 5.1
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | maven-jar-plugin
25 | 2.4
26 |
27 |
28 | generate-resources
29 |
30 | jar
31 |
32 |
33 | ${android.sdk.path}/sources/android-22
34 |
35 | **/*
36 |
37 | android-sources
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 | maven-install-plugin
46 |
47 |
48 | android-jar
49 | install
50 | install-file
51 |
52 | ${platform.android.groupid}
53 | ${platform.android.artifactid}
54 | jar
55 | ${jar.version}
56 | ${jar.path}
57 | ${javadoc.path}
58 | ${project.build.directory}/android-sources.jar
59 |
60 |
61 |
62 | uiautomator-jar
63 | install
64 | install-file
65 |
66 | ${platform.uiautomator.groupid}
67 | ${platform.uiautomator.artifactid}
68 | jar
69 | ${jar.version}
70 | ${uiautomator.path}
71 |
72 |
73 |
74 |
75 |
76 | maven-deploy-plugin
77 |
78 |
79 | android-jar
80 | deploy
81 | deploy-file
82 |
83 | ${platform.android.groupid}
84 | ${platform.android.artifactid}
85 | jar
86 | ${jar.version}
87 | ${jar.path}
88 | ${repo.url}
89 | ${repo.id}
90 | ${javadoc.path}
91 | ${project.build.directory}/android-sources.jar
92 |
93 |
94 |
95 | uiautomator-jar
96 | deploy
97 | deploy-file
98 |
99 | ${platform.uiautomator.groupid}
100 | ${platform.uiautomator.artifactid}
101 | jar
102 | ${jar.version}
103 | ${uiautomator.path}
104 | ${repo.url}
105 | ${repo.id}
106 |
107 |
108 |
109 |
110 |
111 |
112 | org.codehaus.mojo
113 | properties-maven-plugin
114 |
115 |
116 |
117 |
118 |
--------------------------------------------------------------------------------
/platforms/android-23/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | android-23
6 | pom
7 | Android Platform 6.0 API 23
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-platforms
12 | 2.10.0
13 |
14 |
15 |
16 | 6.0
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | maven-jar-plugin
25 | 2.4
26 |
27 |
28 | generate-resources
29 |
30 | jar
31 |
32 |
33 | ${android.sdk.path}/sources/android-23
34 |
35 | **/*
36 |
37 | android-sources
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 | maven-install-plugin
46 |
47 |
48 | android-jar
49 | install
50 | install-file
51 |
52 | ${platform.android.groupid}
53 | ${platform.android.artifactid}
54 | jar
55 | ${jar.version}
56 | ${jar.path}
57 | ${javadoc.path}
58 | ${project.build.directory}/android-sources.jar
59 |
60 |
61 |
62 | uiautomator-jar
63 | install
64 | install-file
65 |
66 | ${platform.uiautomator.groupid}
67 | ${platform.uiautomator.artifactid}
68 | jar
69 | ${jar.version}
70 | ${uiautomator.path}
71 |
72 |
73 |
74 |
75 |
76 | maven-deploy-plugin
77 |
78 |
79 | android-jar
80 | deploy
81 | deploy-file
82 |
83 | ${platform.android.groupid}
84 | ${platform.android.artifactid}
85 | jar
86 | ${jar.version}
87 | ${jar.path}
88 | ${repo.url}
89 | ${repo.id}
90 | ${javadoc.path}
91 | ${project.build.directory}/android-sources.jar
92 |
93 |
94 |
95 | uiautomator-jar
96 | deploy
97 | deploy-file
98 |
99 | ${platform.uiautomator.groupid}
100 | ${platform.uiautomator.artifactid}
101 | jar
102 | ${jar.version}
103 | ${uiautomator.path}
104 | ${repo.url}
105 | ${repo.id}
106 |
107 |
108 |
109 |
110 |
111 |
112 | org.codehaus.mojo
113 | properties-maven-plugin
114 |
115 |
116 |
117 |
118 |
--------------------------------------------------------------------------------
/platforms/android-24/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | android-24
6 | pom
7 | Android Platform 7.0 API 24
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-platforms
12 | 2.10.0
13 |
14 |
15 |
16 | 7.0
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | maven-jar-plugin
25 | 2.4
26 |
27 |
28 | generate-resources
29 |
30 | jar
31 |
32 |
33 | ${android.sdk.path}/sources/android-24
34 |
35 | **/*
36 |
37 | android-sources
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 | maven-install-plugin
46 |
47 |
48 | android-jar
49 | install
50 | install-file
51 |
52 | ${platform.android.groupid}
53 | ${platform.android.artifactid}
54 | jar
55 | ${jar.version}
56 | ${jar.path}
57 | ${javadoc.path}
58 | ${project.build.directory}/android-sources.jar
59 |
60 |
61 |
62 | uiautomator-jar
63 | install
64 | install-file
65 |
66 | ${platform.uiautomator.groupid}
67 | ${platform.uiautomator.artifactid}
68 | jar
69 | ${jar.version}
70 | ${uiautomator.path}
71 |
72 |
73 |
74 |
75 |
76 | maven-deploy-plugin
77 |
78 |
79 | android-jar
80 | deploy
81 | deploy-file
82 |
83 | ${platform.android.groupid}
84 | ${platform.android.artifactid}
85 | jar
86 | ${jar.version}
87 | ${jar.path}
88 | ${repo.url}
89 | ${repo.id}
90 | ${javadoc.path}
91 | ${project.build.directory}/android-sources.jar
92 |
93 |
94 |
95 | uiautomator-jar
96 | deploy
97 | deploy-file
98 |
99 | ${platform.uiautomator.groupid}
100 | ${platform.uiautomator.artifactid}
101 | jar
102 | ${jar.version}
103 | ${uiautomator.path}
104 | ${repo.url}
105 | ${repo.id}
106 |
107 |
108 |
109 |
110 |
111 |
112 | org.codehaus.mojo
113 | properties-maven-plugin
114 |
115 |
116 |
117 |
118 |
--------------------------------------------------------------------------------
/platforms/android-25/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | android-25
6 | pom
7 | Android Platform 7.1 API 25
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-platforms
12 | 2.10.0
13 |
14 |
15 |
16 | 7.1
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | maven-jar-plugin
25 | 2.4
26 |
27 |
28 | generate-resources
29 |
30 | jar
31 |
32 |
33 | ${android.sdk.path}/sources/android-25
34 |
35 | **/*
36 |
37 | android-sources
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 | maven-install-plugin
46 |
47 |
48 | android-jar
49 | install
50 | install-file
51 |
52 | ${platform.android.groupid}
53 | ${platform.android.artifactid}
54 | jar
55 | ${jar.version}
56 | ${jar.path}
57 | ${javadoc.path}
58 | ${project.build.directory}/android-sources.jar
59 |
60 |
61 |
62 | uiautomator-jar
63 | install
64 | install-file
65 |
66 | ${platform.uiautomator.groupid}
67 | ${platform.uiautomator.artifactid}
68 | jar
69 | ${jar.version}
70 | ${uiautomator.path}
71 |
72 |
73 |
74 |
75 |
76 | maven-deploy-plugin
77 |
78 |
79 | android-jar
80 | deploy
81 | deploy-file
82 |
83 | ${platform.android.groupid}
84 | ${platform.android.artifactid}
85 | jar
86 | ${jar.version}
87 | ${jar.path}
88 | ${repo.url}
89 | ${repo.id}
90 | ${javadoc.path}
91 | ${project.build.directory}/android-sources.jar
92 |
93 |
94 |
95 | uiautomator-jar
96 | deploy
97 | deploy-file
98 |
99 | ${platform.uiautomator.groupid}
100 | ${platform.uiautomator.artifactid}
101 | jar
102 | ${jar.version}
103 | ${uiautomator.path}
104 | ${repo.url}
105 | ${repo.id}
106 |
107 |
108 |
109 |
110 |
111 |
112 | org.codehaus.mojo
113 | properties-maven-plugin
114 |
115 |
116 |
117 |
118 |
--------------------------------------------------------------------------------
/platforms/android-26/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | android-26
6 | pom
7 | Android Platform 8.0 API 26
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-platforms
12 | 2.10.0
13 |
14 |
15 |
16 | 8.0
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | maven-jar-plugin
25 | 2.4
26 |
27 |
28 | generate-resources
29 |
30 | jar
31 |
32 |
33 | ${android.sdk.path}/sources/android-26
34 |
35 | **/*
36 |
37 | android-sources
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 | maven-install-plugin
46 |
47 |
48 | android-jar
49 | install
50 | install-file
51 |
52 | ${platform.android.groupid}
53 | ${platform.android.artifactid}
54 | jar
55 | ${jar.version}
56 | ${jar.path}
57 | ${javadoc.path}
58 | ${project.build.directory}/android-sources.jar
59 |
60 |
61 |
62 | uiautomator-jar
63 | install
64 | install-file
65 |
66 | ${platform.uiautomator.groupid}
67 | ${platform.uiautomator.artifactid}
68 | jar
69 | ${jar.version}
70 | ${uiautomator.path}
71 |
72 |
73 |
74 |
75 |
76 | maven-deploy-plugin
77 |
78 |
79 | android-jar
80 | deploy
81 | deploy-file
82 |
83 | ${platform.android.groupid}
84 | ${platform.android.artifactid}
85 | jar
86 | ${jar.version}
87 | ${jar.path}
88 | ${repo.url}
89 | ${repo.id}
90 | ${javadoc.path}
91 | ${project.build.directory}/android-sources.jar
92 |
93 |
94 |
95 | uiautomator-jar
96 | deploy
97 | deploy-file
98 |
99 | ${platform.uiautomator.groupid}
100 | ${platform.uiautomator.artifactid}
101 | jar
102 | ${jar.version}
103 | ${uiautomator.path}
104 | ${repo.url}
105 | ${repo.id}
106 |
107 |
108 |
109 |
110 |
111 |
112 | org.codehaus.mojo
113 | properties-maven-plugin
114 |
115 |
116 |
117 |
118 |
--------------------------------------------------------------------------------
/platforms/android-27/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 | 4.0.0
5 | com.simpligility.android.sdk-deployer
6 | android-27
7 | pom
8 | Android Platform 8.1 API 27
9 |
10 |
11 | com.simpligility.android.sdk-deployer
12 | android-platforms
13 | 2.10.0
14 |
15 |
16 |
17 | 8.0
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 | maven-jar-plugin
26 | 2.4
27 |
28 |
29 | generate-resources
30 |
31 | jar
32 |
33 |
34 | ${android.sdk.path}/sources/android-27
35 |
36 | **/*
37 |
38 | android-sources
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 | maven-install-plugin
47 |
48 |
49 | android-jar
50 | install
51 |
52 | install-file
53 |
54 |
55 | ${platform.android.groupid}
56 | ${platform.android.artifactid}
57 | jar
58 | ${jar.version}
59 | ${jar.path}
60 | ${javadoc.path}
61 | ${project.build.directory}/android-sources.jar
62 |
63 |
64 |
65 | uiautomator-jar
66 | install
67 |
68 | install-file
69 |
70 |
71 | ${platform.uiautomator.groupid}
72 | ${platform.uiautomator.artifactid}
73 | jar
74 | ${jar.version}
75 | ${uiautomator.path}
76 |
77 |
78 |
79 |
80 |
81 | maven-deploy-plugin
82 |
83 |
84 | android-jar
85 | deploy
86 |
87 | deploy-file
88 |
89 |
90 | ${platform.android.groupid}
91 | ${platform.android.artifactid}
92 | jar
93 | ${jar.version}
94 | ${jar.path}
95 | ${repo.url}
96 | ${repo.id}
97 | ${javadoc.path}
98 | ${project.build.directory}/android-sources.jar
99 |
100 |
101 |
102 | uiautomator-jar
103 | deploy
104 |
105 | deploy-file
106 |
107 |
108 | ${platform.uiautomator.groupid}
109 | ${platform.uiautomator.artifactid}
110 | jar
111 | ${jar.version}
112 | ${uiautomator.path}
113 | ${repo.url}
114 | ${repo.id}
115 |
116 |
117 |
118 |
119 |
120 |
121 | org.codehaus.mojo
122 | properties-maven-plugin
123 |
124 |
125 |
126 |
127 |
--------------------------------------------------------------------------------
/platforms/android-28/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 | 4.0.0
5 | com.simpligility.android.sdk-deployer
6 | android-28
7 | pom
8 | Android Platform 9.0 API 28
9 |
10 |
11 | com.simpligility.android.sdk-deployer
12 | android-platforms
13 | 2.10.0
14 |
15 |
16 |
17 | 8.0
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 | maven-jar-plugin
26 | 2.4
27 |
28 |
29 | generate-resources
30 |
31 | jar
32 |
33 |
34 | ${android.sdk.path}/sources/android-28
35 |
36 | **/*
37 |
38 | android-sources
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 | maven-install-plugin
47 |
48 |
49 | android-jar
50 | install
51 |
52 | install-file
53 |
54 |
55 | ${platform.android.groupid}
56 | ${platform.android.artifactid}
57 | jar
58 | ${jar.version}
59 | ${jar.path}
60 | ${javadoc.path}
61 | ${project.build.directory}/android-sources.jar
62 |
63 |
64 |
65 | uiautomator-jar
66 | install
67 |
68 | install-file
69 |
70 |
71 | ${platform.uiautomator.groupid}
72 | ${platform.uiautomator.artifactid}
73 | jar
74 | ${jar.version}
75 | ${uiautomator.path}
76 |
77 |
78 |
79 |
80 |
81 | maven-deploy-plugin
82 |
83 |
84 | android-jar
85 | deploy
86 |
87 | deploy-file
88 |
89 |
90 | ${platform.android.groupid}
91 | ${platform.android.artifactid}
92 | jar
93 | ${jar.version}
94 | ${jar.path}
95 | ${repo.url}
96 | ${repo.id}
97 | ${javadoc.path}
98 | ${project.build.directory}/android-sources.jar
99 |
100 |
101 |
102 | uiautomator-jar
103 | deploy
104 |
105 | deploy-file
106 |
107 |
108 | ${platform.uiautomator.groupid}
109 | ${platform.uiautomator.artifactid}
110 | jar
111 | ${jar.version}
112 | ${uiautomator.path}
113 | ${repo.url}
114 | ${repo.id}
115 |
116 |
117 |
118 |
119 |
120 |
121 | org.codehaus.mojo
122 | properties-maven-plugin
123 |
124 |
125 |
126 |
127 |
--------------------------------------------------------------------------------
/platforms/android-29/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 | 4.0.0
5 | com.simpligility.android.sdk-deployer
6 | android-29
7 | pom
8 | Android Platform 10.0 API 29
9 |
10 |
11 | com.simpligility.android.sdk-deployer
12 | android-platforms
13 | 2.10.0
14 |
15 |
16 |
17 | 8.0
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 | maven-jar-plugin
26 | 2.4
27 |
28 |
29 | generate-resources
30 |
31 | jar
32 |
33 |
34 | ${android.sdk.path}/sources/android-29
35 |
36 | **/*
37 |
38 | android-sources
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 | maven-install-plugin
47 |
48 |
49 | android-jar
50 | install
51 |
52 | install-file
53 |
54 |
55 | ${platform.android.groupid}
56 | ${platform.android.artifactid}
57 | jar
58 | ${jar.version}
59 | ${jar.path}
60 | ${javadoc.path}
61 | ${project.build.directory}/android-sources.jar
62 |
63 |
64 |
65 | uiautomator-jar
66 | install
67 |
68 | install-file
69 |
70 |
71 | ${platform.uiautomator.groupid}
72 | ${platform.uiautomator.artifactid}
73 | jar
74 | ${jar.version}
75 | ${uiautomator.path}
76 |
77 |
78 |
79 |
80 |
81 | maven-deploy-plugin
82 |
83 |
84 | android-jar
85 | deploy
86 |
87 | deploy-file
88 |
89 |
90 | ${platform.android.groupid}
91 | ${platform.android.artifactid}
92 | jar
93 | ${jar.version}
94 | ${jar.path}
95 | ${repo.url}
96 | ${repo.id}
97 | ${javadoc.path}
98 | ${project.build.directory}/android-sources.jar
99 |
100 |
101 |
102 | uiautomator-jar
103 | deploy
104 |
105 | deploy-file
106 |
107 |
108 | ${platform.uiautomator.groupid}
109 | ${platform.uiautomator.artifactid}
110 | jar
111 | ${jar.version}
112 | ${uiautomator.path}
113 | ${repo.url}
114 | ${repo.id}
115 |
116 |
117 |
118 |
119 |
120 |
121 | org.codehaus.mojo
122 | properties-maven-plugin
123 |
124 |
125 |
126 |
127 |
--------------------------------------------------------------------------------
/platforms/android-7/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | android-7
6 | pom
7 | Android Platform 2.1 API 7
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-platforms
12 | 2.10.0
13 |
14 |
15 |
16 | 2.1
17 |
18 |
19 |
20 |
21 |
22 |
23 | maven-install-plugin
24 |
25 |
26 | install
27 | install-file
28 |
29 | ${platform.android.groupid}
30 | ${platform.android.artifactid}
31 | jar
32 | ${jar.version}
33 | ${jar.path}
34 | ${javadoc.path}
35 |
36 |
37 |
38 |
39 |
40 | maven-deploy-plugin
41 |
42 |
43 | a
44 | deploy
45 | deploy-file
46 |
47 | ${platform.android.groupid}
48 | ${platform.android.artifactid}
49 | jar
50 | ${jar.version}
51 | ${jar.path}
52 | ${repo.url}
53 | ${repo.id}
54 | ${javadoc.path}
55 |
56 |
57 |
58 |
59 |
60 | org.codehaus.mojo
61 | properties-maven-plugin
62 |
63 |
64 |
65 |
66 |
--------------------------------------------------------------------------------
/platforms/android-8/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | android-8
6 | pom
7 | Android Platform 2.2 API 8
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-platforms
12 | 2.10.0
13 |
14 |
15 |
16 | 2.2
17 |
18 |
19 |
20 |
21 |
22 |
23 | maven-install-plugin
24 |
25 |
26 | install
27 | install-file
28 |
29 | ${platform.android.groupid}
30 | ${platform.android.artifactid}
31 | jar
32 | ${jar.version}
33 | ${jar.path}
34 | ${javadoc.path}
35 |
36 |
37 |
38 |
39 |
40 | maven-deploy-plugin
41 |
42 |
43 | a
44 | deploy
45 | deploy-file
46 |
47 | ${platform.android.groupid}
48 | ${platform.android.artifactid}
49 | jar
50 | ${jar.version}
51 | ${jar.path}
52 | ${repo.url}
53 | ${repo.id}
54 | ${javadoc.path}
55 |
56 |
57 |
58 |
59 |
60 | org.codehaus.mojo
61 | properties-maven-plugin
62 |
63 |
64 |
65 |
66 |
--------------------------------------------------------------------------------
/platforms/android-MNC/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 4.0.0
4 | com.simpligility.android.sdk-deployer
5 | android-MNC
6 | pom
7 | Android Platform MNC API 23
8 |
9 |
10 | com.simpligility.android.sdk-deployer
11 | android-platforms
12 | 2.7.0
13 |
14 |
15 |
16 | MNC
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | maven-jar-plugin
25 | 2.4
26 |
27 |
28 | generate-resources
29 |
30 | jar
31 |
32 |
33 | ${android.sdk.path}/sources/android-MNC
34 |
35 | **/*
36 |
37 | android-sources
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 | maven-install-plugin
46 |
47 |
48 | android-jar
49 | install
50 | install-file
51 |
52 | ${platform.android.groupid}
53 | ${platform.android.artifactid}
54 | jar
55 | ${jar.version}
56 | ${jar.path}
57 | ${javadoc.path}
58 | ${project.build.directory}/android-sources.jar
59 |
60 |
61 |
62 | uiautomator-jar
63 | install
64 | install-file
65 |
66 | ${platform.uiautomator.groupid}
67 | ${platform.uiautomator.artifactid}
68 | jar
69 | ${jar.version}
70 | ${uiautomator.path}
71 |
72 |
73 |
74 |
75 |
76 | maven-deploy-plugin
77 |
78 |
79 | android-jar
80 | deploy
81 | deploy-file
82 |
83 | ${platform.android.groupid}
84 | ${platform.android.artifactid}
85 | jar
86 | ${jar.version}
87 | ${jar.path}
88 | ${repo.url}
89 | ${repo.id}
90 | ${javadoc.path}
91 | ${project.build.directory}/android-sources.jar
92 |
93 |
94 |
95 | uiautomator-jar
96 | deploy
97 | deploy-file
98 |
99 | ${platform.uiautomator.groupid}
100 | ${platform.uiautomator.artifactid}
101 | jar
102 | ${jar.version}
103 | ${uiautomator.path}
104 | ${repo.url}
105 | ${repo.id}
106 |
107 |
108 |
109 |
110 |
111 |
112 | org.codehaus.mojo
113 | properties-maven-plugin
114 |
115 |
116 |
117 |
118 |
--------------------------------------------------------------------------------
/remove_artifacts.sh:
--------------------------------------------------------------------------------
1 | rm -rvf ~/.m2/repository/android
2 | rm -rfv ~/.m2/repository/com/google/android/
3 | rm -rfv ~/.m2/repository/com/android/future/
4 |
5 |
--------------------------------------------------------------------------------
/repositories/android-m2repository/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 | 4.0.0
5 | com.simpligility.android.sdk-deployer
6 | android-m2repository
7 | pom
8 | Android M2Repository
9 |
10 |
11 | com.simpligility.android.sdk-deployer
12 | repositories
13 | 2.10.0
14 |
15 |
16 |
17 | file://${sdk.extras.path}/android/m2repository
18 |
19 |
20 |
21 |
22 |
23 | org.codehaus.mojo
24 | wagon-maven-plugin
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/repositories/extras-m2repository/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 | 4.0.0
5 | com.simpligility.android.sdk-deployer
6 | extras-m2repository
7 | pom
8 | Extras M2Repository
9 |
10 |
11 | com.simpligility.android.sdk-deployer
12 | repositories
13 | 2.10.0
14 |
15 |
16 |
17 | file://${sdk.extras.path}/m2repository
18 |
19 |
20 |
21 |
22 |
23 | org.codehaus.mojo
24 | wagon-maven-plugin
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/repositories/google-m2repository/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 | 4.0.0
5 | com.simpligility.android.sdk-deployer
6 | google-m2repository
7 | pom
8 | Google M2Repository
9 |
10 |
11 | com.simpligility.android.sdk-deployer
12 | repositories
13 | 2.10.0
14 |
15 |
16 |
17 | file://${sdk.extras.path}/google/m2repository
18 |
19 |
20 |
21 |
22 |
23 | org.codehaus.mojo
24 | wagon-maven-plugin
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/repositories/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 | 4.0.0
5 | com.simpligility.android.sdk-deployer
6 | repositories
7 | pom
8 | Repositories
9 |
10 |
11 | com.simpligility.android.sdk-deployer
12 | maven-android-sdk-deployer
13 | 2.10.0
14 |
15 |
16 |
17 |
18 |
19 |
20 | org.codehaus.mojo
21 | wagon-maven-plugin
22 |
23 |
24 |
25 | install-repo
26 | install
27 |
28 | merge-maven-repos
29 |
30 |
31 | ${repository.path}
32 | file://${settings.localRepository}
33 |
34 |
35 |
36 | deploy-repo
37 | deploy
38 |
39 | copy
40 |
41 |
42 | ${repository.path}
43 | ${repo.url}
44 | ${repo.id}
45 | NOTICE.txt,source.properties
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 | all
58 |
59 | true
60 |
61 |
62 | google-m2repository
63 | android-m2repository
64 | extras-m2repository
65 |
66 |
67 |
68 |
69 |
--------------------------------------------------------------------------------