-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Started working on integrating Azure to transfer pictures from Glass …
…to Phone. (it isn't cooperating at them moment)
- Loading branch information
Showing
27 changed files
with
384 additions
and
359 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+485 Bytes
out/production/GlassShare/com/w9jds/glassshare/Classes/ImageItem.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
out/production/GlassShare/com/w9jds/glassshare/MainActivity$1.class
Binary file not shown.
Binary file removed
BIN
-2.45 KB
out/production/GlassShare/com/w9jds/glassshare/MainActivity$3.class
Binary file not shown.
Binary file added
BIN
+1.56 KB
out/production/GlassShare/com/w9jds/glassshare/MainActivity$insertImage$1.class
Binary file not shown.
Binary file added
BIN
+2.25 KB
out/production/GlassShare/com/w9jds/glassshare/MainActivity$insertImage.class
Binary file not shown.
Binary file modified
BIN
-962 Bytes
(89%)
out/production/GlassShare/com/w9jds/glassshare/MainActivity.class
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
out/production/GlassShare/com/w9jds/glassshare/R$integer.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
out/production/GlassShare/com/w9jds/glassshare/R$layout.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
out/production/GlassShare/com/w9jds/glassshare/R$menu.class
Binary file not shown.
Binary file modified
BIN
-46 Bytes
(98%)
out/production/GlassShare/com/w9jds/glassshare/R$string.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
out/production/GlassShare/com/w9jds/glassshare/R$style.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
out/production/GlassShare/com/w9jds/glassshare/R$styleable.class
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.