Skip to content

Commit

Permalink
Rewrite ignition-core samples to all be in a single sample app
Browse files Browse the repository at this point in the history
  • Loading branch information
mttkay committed Apr 20, 2012
1 parent 00b664a commit 606fff3
Show file tree
Hide file tree
Showing 74 changed files with 137 additions and 474 deletions.
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>remote-image-view-sample</name>
<comment>NO_M2ECLIPSE_SUPPORT: Project files created with the maven-eclipse-plugin are not supported in M2Eclipse.</comment>
<name>ignition-core-samples</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
Expand Down Expand Up @@ -32,8 +32,8 @@
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
</natures>
</projectDescription>
@@ -1,4 +1,4 @@
#Mon Mar 12 15:12:07 CET 2012
#Fri Apr 20 12:14:11 CEST 2012
eclipse.preferences.version=1
encoding/<project>=UTF-8
encoding/src=UTF-8
@@ -1,4 +1,4 @@
#Mon Mar 12 15:12:07 CET 2012
#Fri Apr 20 12:14:11 CEST 2012
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.compliance=1.6
Expand Down
@@ -1,4 +1,4 @@
#Mon Mar 12 15:13:40 CET 2012
#Fri Apr 20 12:14:11 CEST 2012
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
Expand Down
28 changes: 28 additions & 0 deletions ignition-core/ignition-core-samples/AndroidManifest.xml
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.github.ignition.samples.core"
android:versionCode="1"
android:versionName="1.0" >

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".SampleListActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".EndlessListActivity" />
<activity android:name=".IgnitedAsyncTaskActivity" />
<activity android:name=".RemoteImageViewActivity" />
<activity android:name=".RemoteImageGalleryActivity" />
</application>

</manifest>

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.

This file was deleted.

27 changes: 9 additions & 18 deletions ignition-core/ignition-core-samples/pom.xml
Expand Up @@ -7,25 +7,16 @@
<version>0.2-SNAPSHOT</version>
</parent>
<artifactId>ignition-core-samples</artifactId>
<packaging>pom</packaging>
<packaging>apk</packaging>

<modules>
<module>ignited-async-task-sample</module>
<module>remote-image-view-sample</module>
<module>remote-image-gallery-sample</module>
<module>endless-list-adapter-sample</module>
</modules>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.github.ignition</groupId>
<artifactId>ignition-core</artifactId>
<type>apklib</type>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>com.github.ignition</groupId>
<artifactId>ignition-core</artifactId>
<type>apklib</type>
<version>${project.version}</version>
</dependency>
</dependencies>

<build>
<sourceDirectory>src</sourceDirectory>
Expand Down
Expand Up @@ -9,4 +9,4 @@

# Project target.
target=android-4
android.library.reference.1=../../ignition-core-lib
android.library.reference.1=../ignition-core-lib

This file was deleted.

0 comments on commit 606fff3

Please sign in to comment.