Index: ../trunk-jpl/src/android/helloworld/Square/.classpath
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/.classpath	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/Square/.classpath	(revision 13561)
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="src" path="src"/>
+	<classpathentry kind="src" path="gen"/>
+	<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
+	<classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
+	<classpathentry kind="output" path="bin/classes"/>
+</classpath>
Index: ../trunk-jpl/src/android/helloworld/Square/jni/Android.mk
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/jni/Android.mk	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/Square/jni/Android.mk	(revision 13561)
@@ -0,0 +1,8 @@
+LOCAL_PATH := $(call my-dir)
+ 
+include $(CLEAR_VARS)
+ 
+LOCAL_MODULE    := squared
+LOCAL_SRC_FILES := SquaredNumber.cpp
+ 
+include $(BUILD_SHARED_LIBRARY)
\ No newline at end of file
Index: ../trunk-jpl/src/android/helloworld/Square/jni/square.h
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/jni/square.h	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/Square/jni/square.h	(revision 13561)
@@ -0,0 +1,21 @@
+/* DO NOT EDIT THIS FILE - it is machine generated */
+#include <jni.h>
+/* Header for class com_example_square_SquareNumber */
+
+#ifndef _Included_com_example_square_SquareNumber
+#define _Included_com_example_square_SquareNumber
+#ifdef __cplusplus
+extern "C" {
+#endif
+/*
+ * Class:     com_example_square_SquareNumber
+ * Method:    squared
+ * Signature: (I)I
+ */
+JNIEXPORT jint JNICALL Java_com_example_square_SquareNumber_squared
+  (JNIEnv *, jclass, jint);
+
+#ifdef __cplusplus
+}
+#endif
+#endif
Index: ../trunk-jpl/src/android/helloworld/Square/project.properties
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/project.properties	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/Square/project.properties	(revision 13561)
@@ -0,0 +1,14 @@
+# This file is automatically generated by Android Tools.
+# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
+#
+# This file must be checked in Version Control Systems.
+#
+# To customize properties used by the Ant build system edit
+# "ant.properties", and override values to adapt the script to your
+# project structure.
+#
+# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
+#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
+
+# Project target.
+target=android-16
Index: ../trunk-jpl/src/android/helloworld/Square/.project
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/.project	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/Square/.project	(revision 13561)
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>Square</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>com.android.ide.eclipse.adt.ApkBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+	</natures>
+</projectDescription>
Index: ../trunk-jpl/src/android/helloworld/Square/proguard-project.txt
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/proguard-project.txt	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/Square/proguard-project.txt	(revision 13561)
@@ -0,0 +1,20 @@
+# To enable ProGuard in your project, edit project.properties
+# to define the proguard.config property as described in that file.
+#
+# Add project specific ProGuard rules here.
+# By default, the flags in this file are appended to flags specified
+# in ${sdk.dir}/tools/proguard/proguard-android.txt
+# You can edit the include path and order by changing the ProGuard
+# include property in project.properties.
+#
+# For more details, see
+#   http://developer.android.com/guide/developing/tools/proguard.html
+
+# Add any project specific keep options here:
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+#   public *;
+#}
Index: ../trunk-jpl/src/android/helloworld/Square/AndroidManifest.xml
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/AndroidManifest.xml	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/Square/AndroidManifest.xml	(revision 13561)
@@ -0,0 +1,25 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+    package="com.example.square"
+    android:versionCode="1"
+    android:versionName="1.0" >
+
+    <uses-sdk
+        android:minSdkVersion="10"
+        android:targetSdkVersion="15" />
+
+    <application
+        android:icon="@drawable/ic_launcher"
+        android:label="@string/app_name"
+        android:theme="@style/AppTheme" >
+        <activity
+            android:name=".Main"
+            android:label="@string/title_activity_main" >
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+
+                <category android:name="android.intent.category.LAUNCHER" />
+            </intent-filter>
+        </activity>
+    </application>
+
+</manifest>
\ No newline at end of file
Index: ../trunk-jpl/src/android/helloworld/Square/src/com/example/square/Main.java
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/src/com/example/square/Main.java	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/Square/src/com/example/square/Main.java	(revision 13561)
@@ -0,0 +1,20 @@
+package com.example.square;
+
+import android.os.Bundle;
+import android.app.Activity;
+import android.view.Menu;
+
+public class Main extends Activity {
+
+    @Override
+    public void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
+        setContentView(R.layout.activity_main);
+    }
+
+    @Override
+    public boolean onCreateOptionsMenu(Menu menu) {
+        getMenuInflater().inflate(R.menu.activity_main, menu);
+        return true;
+    }
+}
Index: ../trunk-jpl/src/android/helloworld/Square/src/com/example/square/Square.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/src/com/example/square/Square.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/src/com/example/square/Square.class	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/src/com/example/square/Square.class	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/src/com/example/square/Square.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/src/com/example/square/SquareNumber.java
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/src/com/example/square/SquareNumber.java	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/Square/src/com/example/square/SquareNumber.java	(revision 13561)
@@ -0,0 +1,20 @@
+
+package com.example.square;
+
+
+public class SquareNumber {
+    // Declare native method (and make it public to expose it directly)
+    public static native int squared(int base);
+ 
+    // Provide additional functionality, that &quot;extends&quot; the native method
+    public static int to4(int base)
+    {
+        int sq = squared(base);
+        return squared(sq);
+    }
+ 
+    // Load library
+    static {
+        System.loadLibrary("libSquareNumber");
+    }
+}
\ No newline at end of file
Index: ../trunk-jpl/src/android/helloworld/Square/src/com/example/square/SquareNumber.cpp
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/src/com/example/square/SquareNumber.cpp	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/Square/src/com/example/square/SquareNumber.cpp	(revision 13561)
@@ -0,0 +1,7 @@
+#include libSquareNumber;
+
+JNIEXPORT jint JNICALL Java_org_edwards_1research_demo_jni_SquaredWrapper_squared
+  (JNIEnv * je, jclass jc, jint base)
+{
+        return (base*base);
+}
Index: ../trunk-jpl/src/android/helloworld/Square/src/com/example/square/SquareNumber.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/src/com/example/square/SquareNumber.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/src/com/example/square/SquareNumber.class	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/src/com/example/square/SquareNumber.class	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/src/com/example/square/SquareNumber.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/AndroidManifest.xml
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/bin/AndroidManifest.xml	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/Square/bin/AndroidManifest.xml	(revision 13561)
@@ -0,0 +1,25 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+    package="com.example.square"
+    android:versionCode="1"
+    android:versionName="1.0" >
+
+    <uses-sdk
+        android:minSdkVersion="10"
+        android:targetSdkVersion="15" />
+
+    <application
+        android:icon="@drawable/ic_launcher"
+        android:label="@string/app_name"
+        android:theme="@style/AppTheme" >
+        <activity
+            android:name=".Main"
+            android:label="@string/title_activity_main" >
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+
+                <category android:name="android.intent.category.LAUNCHER" />
+            </intent-filter>
+        </activity>
+    </application>
+
+</manifest>
\ No newline at end of file
Index: ../trunk-jpl/src/android/helloworld/Square/bin/resources.ap_
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/resources.ap_
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/bin/resources.ap_	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/bin/resources.ap_	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/bin/resources.ap_
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-hdpi/ic_launcher.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-hdpi/ic_launcher.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-hdpi/ic_launcher.png	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-hdpi/ic_launcher.png	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-hdpi/ic_launcher.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-hdpi/ic_action_search.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-hdpi/ic_action_search.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-hdpi/ic_action_search.png	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-hdpi/ic_action_search.png	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-hdpi/ic_action_search.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-ldpi/ic_launcher.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-ldpi/ic_launcher.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-ldpi/ic_launcher.png	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-ldpi/ic_launcher.png	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-ldpi/ic_launcher.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-mdpi/ic_launcher.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-mdpi/ic_launcher.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-mdpi/ic_launcher.png	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-mdpi/ic_launcher.png	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-mdpi/ic_launcher.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-mdpi/ic_action_search.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-mdpi/ic_action_search.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-mdpi/ic_action_search.png	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-mdpi/ic_action_search.png	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-mdpi/ic_action_search.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-xhdpi/ic_launcher.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-xhdpi/ic_launcher.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-xhdpi/ic_launcher.png	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-xhdpi/ic_launcher.png	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-xhdpi/ic_launcher.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-xhdpi/ic_action_search.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-xhdpi/ic_action_search.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-xhdpi/ic_action_search.png	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-xhdpi/ic_action_search.png	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/bin/res/drawable-xhdpi/ic_action_search.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/Square.apk
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/Square.apk
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/bin/Square.apk	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/bin/Square.apk	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/bin/Square.apk
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/jarlist.cache
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/bin/jarlist.cache	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/Square/bin/jarlist.cache	(revision 13561)
@@ -0,0 +1,3 @@
+# cache for current jar dependecy. DO NOT EDIT.
+# format is <lastModified> <length> <SHA-1> <path>
+# Encoding is UTF-8
Index: ../trunk-jpl/src/android/helloworld/Square/bin/classes.dex
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/classes.dex
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/bin/classes.dex	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/bin/classes.dex	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/bin/classes.dex
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$string.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$string.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$string.class	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$string.class	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$string.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$attr.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$attr.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$attr.class	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$attr.class	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$attr.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R.class	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R.class	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$id.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$id.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$id.class	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$id.class	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$id.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$layout.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$layout.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$layout.class	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$layout.class	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$layout.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/Main.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/Main.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/Main.class	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/Main.class	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/Main.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/BuildConfig.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/BuildConfig.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/BuildConfig.class	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/BuildConfig.class	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/BuildConfig.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$style.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$style.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$style.class	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$style.class	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$style.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/SquareNumber.cpp
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/SquareNumber.cpp	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/SquareNumber.cpp	(revision 13561)
@@ -0,0 +1,7 @@
+#include libSquareNumber;
+
+JNIEXPORT jint JNICALL Java_org_edwards_1research_demo_jni_SquaredWrapper_squared
+  (JNIEnv * je, jclass jc, jint base)
+{
+        return (base*base);
+}
Index: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$drawable.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$drawable.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$drawable.class	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$drawable.class	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$drawable.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/SquareNumber.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/SquareNumber.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/SquareNumber.class	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/SquareNumber.class	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/SquareNumber.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$menu.class
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$menu.class
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$menu.class	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$menu.class	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/bin/classes/com/example/square/R$menu.class
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/gen/com/example/square/R.java
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/gen/com/example/square/R.java	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/Square/gen/com/example/square/R.java	(revision 13561)
@@ -0,0 +1,35 @@
+/* AUTO-GENERATED FILE.  DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found.  It
+ * should not be modified by hand.
+ */
+
+package com.example.square;
+
+public final class R {
+    public static final class attr {
+    }
+    public static final class drawable {
+        public static final int ic_action_search=0x7f020000;
+        public static final int ic_launcher=0x7f020001;
+    }
+    public static final class id {
+        public static final int menu_settings=0x7f070000;
+    }
+    public static final class layout {
+        public static final int activity_main=0x7f030000;
+    }
+    public static final class menu {
+        public static final int activity_main=0x7f060000;
+    }
+    public static final class string {
+        public static final int app_name=0x7f040000;
+        public static final int hello_world=0x7f040001;
+        public static final int menu_settings=0x7f040002;
+        public static final int title_activity_main=0x7f040003;
+    }
+    public static final class style {
+        public static final int AppTheme=0x7f050000;
+    }
+}
Index: ../trunk-jpl/src/android/helloworld/Square/gen/com/example/square/BuildConfig.java
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/gen/com/example/square/BuildConfig.java	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/Square/gen/com/example/square/BuildConfig.java	(revision 13561)
@@ -0,0 +1,6 @@
+/** Automatically generated file. DO NOT MODIFY */
+package com.example.square;
+
+public final class BuildConfig {
+    public final static boolean DEBUG = true;
+}
\ No newline at end of file
Index: ../trunk-jpl/src/android/helloworld/Square/libs/android-support-v4.jar
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/libs/android-support-v4.jar
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/libs/android-support-v4.jar	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/libs/android-support-v4.jar	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/libs/android-support-v4.jar
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/res/values/styles.xml
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/res/values/styles.xml	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/Square/res/values/styles.xml	(revision 13561)
@@ -0,0 +1,5 @@
+<resources>
+
+    <style name="AppTheme" parent="android:Theme.Light" />
+
+</resources>
\ No newline at end of file
Index: ../trunk-jpl/src/android/helloworld/Square/res/values/strings.xml
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/res/values/strings.xml	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/Square/res/values/strings.xml	(revision 13561)
@@ -0,0 +1,8 @@
+<resources>
+
+    <string name="app_name">Square</string>
+    <string name="hello_world">Hello world!</string>
+    <string name="menu_settings">Settings</string>
+    <string name="title_activity_main">Main</string>
+
+</resources>
\ No newline at end of file
Index: ../trunk-jpl/src/android/helloworld/Square/res/drawable-hdpi/ic_launcher.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/res/drawable-hdpi/ic_launcher.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/res/drawable-hdpi/ic_launcher.png	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/res/drawable-hdpi/ic_launcher.png	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/res/drawable-hdpi/ic_launcher.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/res/drawable-hdpi/ic_action_search.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/res/drawable-hdpi/ic_action_search.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/res/drawable-hdpi/ic_action_search.png	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/res/drawable-hdpi/ic_action_search.png	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/res/drawable-hdpi/ic_action_search.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/res/menu/activity_main.xml
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/res/menu/activity_main.xml	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/Square/res/menu/activity_main.xml	(revision 13561)
@@ -0,0 +1,6 @@
+<menu xmlns:android="http://schemas.android.com/apk/res/android">
+    <item android:id="@+id/menu_settings"
+        android:title="@string/menu_settings"
+        android:orderInCategory="100"
+        android:showAsAction="never" />
+</menu>
Index: ../trunk-jpl/src/android/helloworld/Square/res/values-v11/styles.xml
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/res/values-v11/styles.xml	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/Square/res/values-v11/styles.xml	(revision 13561)
@@ -0,0 +1,5 @@
+<resources>
+
+    <style name="AppTheme" parent="android:Theme.Holo.Light" />
+
+</resources>
\ No newline at end of file
Index: ../trunk-jpl/src/android/helloworld/Square/res/drawable-ldpi/ic_launcher.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/res/drawable-ldpi/ic_launcher.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/res/drawable-ldpi/ic_launcher.png	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/res/drawable-ldpi/ic_launcher.png	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/res/drawable-ldpi/ic_launcher.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/res/values-v14/styles.xml
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/res/values-v14/styles.xml	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/Square/res/values-v14/styles.xml	(revision 13561)
@@ -0,0 +1,5 @@
+<resources>
+
+    <style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar" />
+
+</resources>
\ No newline at end of file
Index: ../trunk-jpl/src/android/helloworld/Square/res/drawable-mdpi/ic_launcher.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/res/drawable-mdpi/ic_launcher.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/res/drawable-mdpi/ic_launcher.png	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/res/drawable-mdpi/ic_launcher.png	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/res/drawable-mdpi/ic_launcher.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/res/drawable-mdpi/ic_action_search.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/res/drawable-mdpi/ic_action_search.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/res/drawable-mdpi/ic_action_search.png	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/res/drawable-mdpi/ic_action_search.png	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/res/drawable-mdpi/ic_action_search.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/res/drawable-xhdpi/ic_launcher.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/res/drawable-xhdpi/ic_launcher.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/res/drawable-xhdpi/ic_launcher.png	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/res/drawable-xhdpi/ic_launcher.png	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/res/drawable-xhdpi/ic_launcher.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/res/drawable-xhdpi/ic_action_search.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/res/drawable-xhdpi/ic_action_search.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/res/drawable-xhdpi/ic_action_search.png	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/res/drawable-xhdpi/ic_action_search.png	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/res/drawable-xhdpi/ic_action_search.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/res/layout/activity_main.xml
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/res/layout/activity_main.xml	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/Square/res/layout/activity_main.xml	(revision 13561)
@@ -0,0 +1,6 @@
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:tools="http://schemas.android.com/tools"
+    android:layout_width="match_parent"
+    android:layout_height="match_parent" >
+
+</RelativeLayout>
Index: ../trunk-jpl/src/android/helloworld/Square/ic_launcher-web.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/ic_launcher-web.png
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/ic_launcher-web.png	(revision 13560)
+++ ../trunk-jpl/src/android/helloworld/Square/ic_launcher-web.png	(revision 13561)

Property changes on: ../trunk-jpl/src/android/helloworld/Square/ic_launcher-web.png
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
Index: ../trunk-jpl/src/android/helloworld/Square/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- ../trunk-jpl/src/android/helloworld/Square/.settings/org.eclipse.jdt.core.prefs	(revision 0)
+++ ../trunk-jpl/src/android/helloworld/Square/.settings/org.eclipse.jdt.core.prefs	(revision 13561)
@@ -0,0 +1,4 @@
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
+org.eclipse.jdt.core.compiler.compliance=1.5
+org.eclipse.jdt.core.compiler.source=1.5
