Skip to content

Commit af2d6a0

Browse files
committed
Nova versão.
1 parent 9bd901d commit af2d6a0

File tree

110 files changed

+252
-544
lines changed

Some content is hidden

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

110 files changed

+252
-544
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,4 @@ tmp/
2424

2525
gen/
2626
lint.xml
27+
/.apt_generated

pom.xml

+108-95
Original file line numberDiff line numberDiff line change
@@ -1,106 +1,119 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4-
<modelVersion>4.0.0</modelVersion>
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>org.gujavasc.opennetworking.android</groupId>
6+
<artifactId>opennetworking</artifactId>
7+
<version>0.0.1-SNAPSHOT</version>
8+
<packaging>apk</packaging>
59

6-
<groupId>org.gujavasc.opennetworking.android</groupId>
7-
<artifactId>opennetworking</artifactId>
8-
<version>0.0.1-SNAPSHOT</version>
9-
<packaging>apk</packaging>
10+
<name>Open Networking</name>
1011

11-
<name>Open Networking</name>
12+
<properties>
13+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14+
<platform.version>4.1.1.4</platform.version>
15+
<android.plugin.version>3.6.0</android.plugin.version>
16+
</properties>
1217

13-
<properties>
14-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15-
16-
<version.android>4.1.2_r4</version.android>
17-
<version.analytics>3</version.analytics>
18-
<version.androidannotations>2.7.1</version.androidannotations>
19-
<version.actionbarsherlock>4.3.1</version.actionbarsherlock>
20-
21-
<version.compiler.plugin>2.5.1</version.compiler.plugin>
22-
<version.android.plugin>3.6.0</version.android.plugin>
23-
24-
<!-- maven-compiler-plugin -->
25-
<maven.compiler.target>1.6</maven.compiler.target>
26-
<maven.compiler.source>1.6</maven.compiler.source>
27-
28-
<!-- platform or api level (api level 16 = platform 4.1) -->
29-
<maven.android.platform>16</maven.android.platform>
30-
</properties>
31-
32-
<dependencies>
33-
<dependency>
34-
<groupId>android</groupId>
35-
<artifactId>android</artifactId>
36-
<version>${version.android}</version>
37-
<scope>provided</scope>
38-
</dependency>
39-
<dependency>
18+
<dependencies>
19+
<dependency>
20+
<groupId>com.google.android</groupId>
21+
<artifactId>android</artifactId>
22+
<version>${platform.version}</version>
23+
<scope>provided</scope>
24+
</dependency>
25+
26+
<dependency>
4027
<groupId>com.google.android.analytics</groupId>
4128
<artifactId>analytics</artifactId>
42-
<version>${version.analytics}</version>
43-
</dependency>
44-
<dependency>
45-
<groupId>com.googlecode.androidannotations</groupId>
46-
<artifactId>androidannotations</artifactId>
47-
<version>${version.androidannotations}</version>
48-
<scope>provided</scope>
49-
</dependency>
50-
<dependency>
51-
<groupId>com.googlecode.androidannotations</groupId>
52-
<artifactId>androidannotations-api</artifactId>
53-
<version>${version.androidannotations}</version>
29+
<version>3</version>
5430
</dependency>
55-
<dependency>
56-
<groupId>com.actionbarsherlock</groupId>
57-
<artifactId>actionbarsherlock</artifactId>
58-
<version>${version.actionbarsherlock}</version>
59-
<type>apklib</type>
60-
</dependency>
61-
</dependencies>
6231

63-
<build>
64-
<finalName>${project.artifactId}</finalName>
65-
<sourceDirectory>src</sourceDirectory>
66-
<testSourceDirectory>test</testSourceDirectory>
67-
<pluginManagement>
68-
<plugins>
69-
<plugin>
70-
<artifactId>maven-compiler-plugin</artifactId>
71-
<version>${version.compiler.plugin}</version>
72-
<configuration>
73-
<encoding>${project.build.sourceEncoding}</encoding>
74-
<source>${maven.compiler.source}</source>
75-
<target>${maven.compiler.target}</target>
76-
</configuration>
77-
</plugin>
78-
<plugin>
79-
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
80-
<artifactId>android-maven-plugin</artifactId>
81-
<version>${version.android.plugin}</version>
82-
<extensions>true</extensions>
83-
</plugin>
84-
</plugins>
85-
</pluginManagement>
86-
<plugins>
87-
<plugin>
88-
<artifactId>maven-compiler-plugin</artifactId>
89-
<configuration>
90-
<source>1.6</source>
91-
<target>1.6</target>
92-
</configuration>
93-
</plugin>
94-
<plugin>
95-
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
96-
<artifactId>android-maven-plugin</artifactId>
97-
<configuration>
98-
<sdk>
99-
<platform>${maven.android.platform}</platform>
100-
</sdk>
101-
</configuration>
102-
</plugin>
103-
</plugins>
104-
</build>
32+
<dependency>
33+
<groupId>android.support</groupId>
34+
<artifactId>compatibility-v4</artifactId>
35+
<version>18</version>
36+
</dependency>
37+
38+
<!-- <dependency> -->
39+
<!-- <groupId>android.support</groupId> -->
40+
<!-- <artifactId>compatibility-v7</artifactId> -->
41+
<!-- <version>18</version> -->
42+
<!-- <type>apklib</type> -->
43+
<!-- </dependency> -->
10544

45+
<dependency>
46+
<groupId>android.support</groupId>
47+
<artifactId>compatibility-v7</artifactId>
48+
<version>18</version>
49+
<type>jar</type>
50+
</dependency>
51+
52+
<dependency>
53+
<groupId>android.support</groupId>
54+
<artifactId>compatibility-v7-appcompat</artifactId>
55+
<version>18</version>
56+
<type>apklib</type>
57+
</dependency>
58+
59+
<dependency>
60+
<groupId>android.support</groupId>
61+
<artifactId>compatibility-v7-appcompat</artifactId>
62+
<version>18</version>
63+
<type>jar</type>
64+
</dependency>
65+
66+
<dependency>
67+
<groupId>com.googlecode.androidannotations</groupId>
68+
<artifactId>androidannotations</artifactId>
69+
<version>2.7.1</version>
70+
<scope>provided</scope>
71+
</dependency>
72+
73+
<dependency>
74+
<groupId>com.googlecode.androidannotations</groupId>
75+
<artifactId>androidannotations-api</artifactId>
76+
<version>2.7.1</version>
77+
</dependency>
78+
79+
<!-- <dependency> -->
80+
<!-- <groupId>com.google.android.annotations</groupId> -->
81+
<!-- <artifactId>annotations</artifactId> -->
82+
<!-- <version>22.0.5</version> -->
83+
<!-- <scope>provided</scope> -->
84+
<!-- </dependency> -->
85+
</dependencies>
86+
87+
<build>
88+
<finalName>${project.artifactId}</finalName>
89+
<pluginManagement>
90+
<plugins>
91+
<plugin>
92+
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
93+
<artifactId>android-maven-plugin</artifactId>
94+
<version>${android.plugin.version}</version>
95+
<extensions>true</extensions>
96+
</plugin>
97+
</plugins>
98+
</pluginManagement>
99+
<plugins>
100+
<plugin>
101+
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
102+
<artifactId>android-maven-plugin</artifactId>
103+
<configuration>
104+
<sdk>
105+
<platform>16</platform>
106+
</sdk>
107+
</configuration>
108+
</plugin>
109+
<plugin>
110+
<artifactId>maven-compiler-plugin</artifactId>
111+
<version>2.5.1</version>
112+
<configuration>
113+
<source>1.6</source>
114+
<target>1.6</target>
115+
</configuration>
116+
</plugin>
117+
</plugins>
118+
</build>
106119
</project>
-204 Bytes
Binary file not shown.
-213 Bytes
Binary file not shown.
-199 Bytes
Binary file not shown.
-136 Bytes
Binary file not shown.
-205 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-206 Bytes
Binary file not shown.
-145 Bytes
Binary file not shown.
Binary file not shown.
-133 Bytes
Binary file not shown.
-800 Bytes
Binary file not shown.
-139 Bytes
Binary file not shown.
-376 Bytes
Binary file not shown.
-358 Bytes
Binary file not shown.
-568 Bytes
Binary file not shown.
-514 Bytes
Binary file not shown.
Binary file not shown.
-101 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
-103 Bytes
Binary file not shown.
Binary file not shown.
-156 Bytes
Binary file not shown.
-166 Bytes
Binary file not shown.
-166 Bytes
Binary file not shown.
-105 Bytes
Binary file not shown.
-164 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-155 Bytes
Binary file not shown.
-120 Bytes
Binary file not shown.
-817 Bytes
Binary file not shown.
-126 Bytes
Binary file not shown.
-501 Bytes
Binary file not shown.
-126 Bytes
Binary file not shown.
-314 Bytes
Binary file not shown.
-308 Bytes
Binary file not shown.
-407 Bytes
Binary file not shown.
-370 Bytes
Binary file not shown.
Binary file not shown.
-97 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
-107 Bytes
Binary file not shown.
Binary file not shown.
-264 Bytes
Binary file not shown.
-277 Bytes
Binary file not shown.
-256 Bytes
Binary file not shown.
-123 Bytes
Binary file not shown.
-269 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-267 Bytes
Binary file not shown.
-149 Bytes
Binary file not shown.
Binary file not shown.
-134 Bytes
Binary file not shown.
Binary file not shown.
-134 Bytes
Binary file not shown.
-476 Bytes
Binary file not shown.
Binary file not shown.
-725 Bytes
Binary file not shown.
-677 Bytes
Binary file not shown.
Binary file not shown.
-105 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
-116 Bytes
Binary file not shown.
Binary file not shown.

res/drawable-xxhdpi/ic_launcher.png

24.2 KB

res/drawable/ab_background_textured_gujavasc.xml

-21
This file was deleted.

res/drawable/btn_cab_done_gujavasc.xml

-27
This file was deleted.

res/drawable/pressed_background_gujavasc.xml

-22
This file was deleted.

res/drawable/progress_horizontal_gujavasc.xml

-35
This file was deleted.

res/drawable/selectable_background_gujavasc.xml

-25
This file was deleted.

res/drawable/spinner_background_ab_gujavasc.xml

-28
This file was deleted.

0 commit comments

Comments
 (0)