Skip to content

Commit 50dca72

Browse files
committed
new examples
1 parent 050eeed commit 50dca72

440 files changed

Lines changed: 12368 additions & 644 deletions

File tree

Some content is hidden

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

aa.test/.project

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>aa.test</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>com.google.gdt.eclipse.core.webAppProjectValidator</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>com.google.gwt.eclipse.core.gwtProjectValidator</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
</buildSpec>
24+
<natures>
25+
<nature>org.eclipse.jdt.core.javanature</nature>
26+
<nature>com.google.gwt.eclipse.core.gwtNature</nature>
27+
</natures>
28+
</projectDescription>

aa.test/gwt-unitCache/gwt-unitCache-000001316D7E3055

Whitespace-only changes.
5.16 MB
Binary file not shown.

aaalars-Android/.classpath

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="lib" path="lib/requestfactory-client.jar"/>
4+
<classpathentry kind="lib" path="lib/c2dm.jar"/>
5+
<classpathentry kind="lib" path="lib/validation-api-1.0.0.GA.jar"/>
6+
<classpathentry kind="src" path="src"/>
7+
<classpathentry kind="src" path="gen"/>
8+
<classpathentry kind="src" path="shared"/>
9+
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
10+
<classpathentry kind="output" path="bin"/>
11+
</classpath>

aaalars-Android/.project

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>aaalars-Android</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.jdt.core.javabuilder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
<buildCommand>
24+
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
25+
<arguments>
26+
</arguments>
27+
</buildCommand>
28+
</buildSpec>
29+
<natures>
30+
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
31+
<nature>org.eclipse.jdt.core.javanature</nature>
32+
<nature>com.google.gdt.eclipse.appengine.rpc.appengineConnectedNature</nature>
33+
</natures>
34+
<linkedResources>
35+
<link>
36+
<name>shared</name>
37+
<type>2</type>
38+
<locationURI>WORKSPACE_LOC/aaalars-AppEngine/shared</locationURI>
39+
</link>
40+
</linkedResources>
41+
</projectDescription>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
appEngineProject=aaalars-AppEngine
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="com.aaalars" android:versionCode="11" android:versionName="2.2.0">
4+
<!-- C2DM requires Android SDK version 2.2 (API level 8) or above -->
5+
<uses-sdk android:minSdkVersion="8" />
6+
7+
<!-- Only this application can receive the messages and registration result -->
8+
<permission android:name="com.aaalars.permission.C2D_MESSAGE"
9+
android:protectionLevel="signature" />
10+
<uses-permission android:name="com.aaalars.permission.C2D_MESSAGE" />
11+
12+
<!-- Permission to register and receive data messages -->
13+
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
14+
15+
<!-- Permission for internet access -->
16+
<uses-permission android:name="android.permission.INTERNET" />
17+
18+
<!-- Permission to keep the processor from sleeping -->
19+
<uses-permission android:name="android.permission.WAKE_LOCK" />
20+
21+
<!-- Permission to retrieve the list of accounts in the Accounts Service -->
22+
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
23+
24+
<!-- Permission to request authtokens from the AccountManager -->
25+
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
26+
27+
<application android:icon="@drawable/app_icon"
28+
android:label="@string/app_name">
29+
30+
<!-- Main activity -->
31+
<activity android:name=".AaalarsActivity" android:label="@string/app_name"
32+
android:launchMode="singleTop" android:screenOrientation="portrait">
33+
<intent-filter>
34+
<action android:name="android.intent.action.MAIN" />
35+
<category android:name="android.intent.category.LAUNCHER" />
36+
</intent-filter>
37+
</activity>
38+
39+
<!-- Account selection activity -->
40+
<activity android:name=".AccountsActivity" android:label="@string/app_name"
41+
android:screenOrientation="portrait">
42+
</activity>
43+
44+
<!-- In order to use the C2DM library, an application must declare a class
45+
with the name C2DMReceiver, extending com.google.android.c2dm.C2DMBaseReceiver.
46+
It must also include this section in the manifest. -->
47+
<service android:name=".C2DMReceiver" />
48+
49+
<!-- Only Google services can send data messages for the app. If permission
50+
is not set - any other app can generate it -->
51+
<receiver android:name="com.google.android.c2dm.C2DMBroadcastReceiver"
52+
android:permission="com.google.android.c2dm.permission.SEND">
53+
<!-- Receive the actual message -->
54+
<intent-filter>
55+
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
56+
<category android:name="com.aaalars" />
57+
</intent-filter>
58+
<!-- Receive the registration id -->
59+
<intent-filter>
60+
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
61+
<category android:name="com.aaalars" />
62+
</intent-filter>
63+
</receiver>
64+
</application>
65+
</manifest>

aaalars-Android/default.properties

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# This file is automatically generated by Android Tools.
2+
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3+
#
4+
# This file must be checked in Version Control Systems.
5+
#
6+
# To customize properties used by the Ant build system use,
7+
# "build.properties", and override values to adapt the script to your
8+
# project structure.
9+
10+
# Project target.
11+
target=android-8
5.24 KB
Binary file not shown.

aaalars-Android/lib/c2dm.jar

5.29 KB
Binary file not shown.

0 commit comments

Comments
 (0)