-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
31 lines (20 loc) · 1.06 KB
/
README
File metadata and controls
31 lines (20 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
DroidDrop - Remote Logging
DroidDrop Remote logging give Android Developers the ability to log data from their applications to a drop on drop.io.
Watch the YouTube demo here: http://www.youtube.com/watch?v=OWwfp1cQ8WA
How to:
Download DroidDropNotes.jar from this repository.
This is the direct URL:
http://github.com/CarmenD/DroidDrop--Remote-Logging/raw/master/DroidDropNotes.jar
Include the jar in your Android project.
The Jar adds 16K to your project.
Get a developer API Key from drop.io (free, painless, takes 2 minutes)
http://dev.drop.io/
Review the sample usage in DropioLogDemo.Java
Watch the YouTube demo here: http://www.youtube.com/watch?v=OWwfp1cQ8WA
DropioLogDemo.java shows the first screen for the app
UpdateLog.java has sample usage to show logging an exception and saving user input.
Declare a DroidDropNote Client:
DroidDropNoteClient dropClient= new DroidDropNoteClient("--YOUR API Key");
dropClient.setToken("--drop password or token");
Write out a Note/Text contents:
results = dropClient.createNote( "DROPNAME", "Note title", "Message");