Skip to content

Commit

Permalink
Started working on integrating Azure to transfer pictures from Glass …
Browse files Browse the repository at this point in the history
…to Phone. (it isn't cooperating at them moment)
  • Loading branch information
w9jds committed Dec 13, 2013
1 parent 240d997 commit 2907cd3
Show file tree
Hide file tree
Showing 27 changed files with 384 additions and 359 deletions.
9 changes: 0 additions & 9 deletions .idea/libraries/google_play_services.xml

This file was deleted.

9 changes: 0 additions & 9 deletions .idea/libraries/gson_2_1.xml

This file was deleted.

9 changes: 9 additions & 0 deletions .idea/libraries/gson_2_2_2.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/libraries/mobileservices_1_1_0.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

278 changes: 197 additions & 81 deletions .idea/workspace.xml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions GlassShare.iml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@
<orderEntry type="library" exported="" name="google-http-client-gson-1.17.0-rc" level="project" />
<orderEntry type="library" exported="" name="google-oauth-client-1.17.0-rc" level="project" />
<orderEntry type="library" exported="" name="google-api-services-drive-v2-rev108-1.17.0-rc" level="project" />
<orderEntry type="library" exported="" name="gson-2.1" level="project" />
<orderEntry type="library" exported="" name="jackson-core-2.1.3" level="project" />
<orderEntry type="library" exported="" name="jackson-core-asl-1.9.11" level="project" />
<orderEntry type="library" exported="" name="jsr305-1.3.9" level="project" />
<orderEntry type="library" exported="" name="protobuf-java-2.4.1" level="project" />
<orderEntry type="library" exported="" name="google-play-services" level="project" />
<orderEntry type="module" module-name="FacebookSDK" exported="" />
<orderEntry type="library" exported="" name="google-api-services-plus-v1-rev111-1.16.0-rc" level="project" />
<orderEntry type="library" exported="" name="mobileservices-1.1.0" level="project" />
<orderEntry type="library" exported="" name="gson-2.2.2" level="project" />
</component>
</module>

Binary file modified out/production/GlassShare/GlassShare.apk
Binary file not shown.
Binary file modified out/production/GlassShare/GlassShare.unaligned.apk
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified out/production/GlassShare/com/w9jds/glassshare/MainActivity.class
Binary file not shown.
Binary file modified out/production/GlassShare/com/w9jds/glassshare/R$id.class
Binary file not shown.
Binary file modified out/production/GlassShare/com/w9jds/glassshare/R$integer.class
Binary file not shown.
Binary file modified out/production/GlassShare/com/w9jds/glassshare/R$layout.class
Binary file not shown.
Binary file modified out/production/GlassShare/com/w9jds/glassshare/R$menu.class
Binary file not shown.
Binary file modified out/production/GlassShare/com/w9jds/glassshare/R$string.class
Binary file not shown.
Binary file modified out/production/GlassShare/com/w9jds/glassshare/R$style.class
Binary file not shown.
Binary file modified out/production/GlassShare/com/w9jds/glassshare/R$styleable.class
Binary file not shown.
Binary file modified out/production/GlassShare/com/w9jds/glassshare/R$xml.class
Binary file not shown.
26 changes: 13 additions & 13 deletions res/menu/main.xml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
<menu xmlns:android="http://schemas.android.com/apk/res/android" >

<item
android:id="@+id/share_menu_item"
android:title="@string/share"
android:icon="@drawable/ic_share_50" />
<!--<item-->
<!--android:id="@+id/share_menu_item"-->
<!--android:title="@string/share"-->
<!--android:icon="@drawable/ic_share_50" />-->

<!--<item-->
<!--android:id="@+id/upload_menu_item"-->
<!--android:title="@string/upload"-->
<!--android:icon="@drawable/ic_archive_50" />-->

<item
android:id="@+id/upload_menu_item"
android:title="@string/upload"
android:id="@+id/uploadphone_menu_item"
android:title="@string/uploadphone_label"
android:icon="@drawable/ic_archive_50" />

<!--<item-->
<!--android:id="@+id/phone_menu_item"-->
<!--android:title="@string/send_label"-->
<!--android:icon="@drawable/ic_bluetooth_50"/>-->

<item
android:id="@+id/delete_menu_item"
android:title="@string/delete"
android:title="@string/delete_label"
android:icon="@drawable/ic_delete_50" />



</menu>
6 changes: 2 additions & 4 deletions res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,10 @@

<string name="app_name">GlassShare</string>

<string name="delete">Delete</string>
<string name="share">Share</string>
<string name="upload">Save to Drive</string>
<string name="delete_label">Delete</string>
<string name="deleted_label">Deleted</string>
<string name="deleting_label">Deleting</string>
<string name="send_label">Push to Phone</string>
<string name="uploadphone_label">Push to MyGlassShare</string>

<integer name="google_play_services_version">4030500</integer>

Expand Down
14 changes: 14 additions & 0 deletions src/com/w9jds/glassshare/Classes/ImageItem.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.w9jds.glassshare.Classes;

import com.google.gson.annotations.SerializedName;

/**
* Created by w9jds on 12/12/13.
*/
public class ImageItem
{
@SerializedName("id")
public String mId;
public String mUserId;
public String mImage;
}
56 changes: 0 additions & 56 deletions src/com/w9jds/glassshare/Classses/ConnectedThread.java

This file was deleted.

Loading

0 comments on commit 2907cd3

Please sign in to comment.