Skip to content

Commit 06ea665

Browse files
committed
Colocando TCSample igual ao modelo do design
1 parent be31357 commit 06ea665

Some content is hidden

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

50 files changed

+272
-83
lines changed

.classpath

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,11 @@
2222
<attribute name="maven.pomderived" value="true"/>
2323
</attributes>
2424
</classpathentry>
25+
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
26+
<attributes>
27+
<attribute name="maven.pomderived" value="true"/>
28+
</attributes>
29+
</classpathentry>
30+
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/3"/>
2531
<classpathentry kind="output" path="target/classes"/>
2632
</classpath>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
eclipse.preferences.version=1
22
encoding//src/main/java=UTF-8
3+
encoding//src/main/resources=UTF-8
34
encoding//src/test/java=UTF-8
45
encoding/<project>=UTF-8

.settings/org.eclipse.jdt.core.prefs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
eclipse.preferences.version=1
22
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3+
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
34
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
45
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
56
org.eclipse.jdt.core.compiler.compliance=1.8

Lato Bold.tcz

78.5 KB
Binary file not shown.

Lato Light.tcz

122 KB
Binary file not shown.

Lato Medium.tcz

76.9 KB
Binary file not shown.

Lato Regular.tcz

76.8 KB
Binary file not shown.

database.db

2 KB
Binary file not shown.

pom.xml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,37 @@
1111

1212
<properties>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14-
<totalcross.activation_key></totalcross.activation_key>
14+
<totalcross.activation_key>544353541A8E8B2A28D5B8E0</totalcross.activation_key>
1515
</properties>
1616

1717
<dependencies>
1818
<dependency>
1919
<groupId>com.totalcross</groupId>
2020
<artifactId>totalcross-sdk</artifactId>
2121
<version>4.1.0</version>
22+
<scope>system</scope>
23+
<systemPath>C:\Program Files\TotalCross\sdk\dist\totalcross-sdk.jar</systemPath>
2224
</dependency>
25+
26+
<dependency>
27+
<groupId>org.xerial</groupId>
28+
<artifactId>sqlite-jdbc</artifactId>
29+
<version>3.8.7</version>
30+
<scope>compile</scope>
31+
</dependency>
32+
2333
</dependencies>
34+
35+
36+
2437
<repositories>
2538
<repository>
2639
<id>totalcross-repo</id>
2740
<name>ip-172-31-40-140-releases</name>
2841
<url>http://maven.totalcross.com/artifactory/repo1</url>
2942
</repository>
3043
</repositories>
44+
3145
<build>
3246
<finalName>${project.artifactId}</finalName>
3347
<plugins>
@@ -68,9 +82,14 @@
6882
<argument>${project.build.directory}/${project.build.finalName}.${project.packaging}</argument>
6983
<argument>-win32</argument>
7084
<argument>-android</argument>
85+
<argument>-ios</argument>
86+
<argument>/n</argument>
87+
<argument>TotalCross Showcase</argument>
7188
<argument>/p</argument>
7289
<argument>/r</argument>
7390
<argument>${totalcross.activation_key}</argument>
91+
<argument>/m</argument>
92+
<argument>C:\Users\TotalCross\Downloads\iOSCertificadosEnterpriseSoftSite</argument>
7493
</arguments>
7594
</configuration>
7695
</execution>

src/main/java/totalcross/sample/TCSampleApplication.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@ public static void main(String[] args) {
88
TotalCrossApplication.run(
99
TCSample.class,
1010
"/r",
11-
"",
12-
"/scr",
13-
"400x600",
14-
"/fontsize",
15-
"24",
16-
"/fingertouch");
11+
"544353541A8E8B2A28D5B8E0");
1712
}
1813
}

0 commit comments

Comments
 (0)