Leveraging the document/file create functionality - google-chrome

Looking for some help to leverage the document/file create functionality for a chrome app that I had in mind. I tried looking at the SDK pages but couldn't find much there or maybe I was looking in the wrong place. Any help on this will be appreciated.

Check out this sample Chrome Extension for accessing the Drive API. It handles some issues for you like OAuth 2.0, which could prove a bit tricky.
https://github.com/GoogleChrome/chrome-app-samples/tree/master/gdocs

Related

TestFlight API and stats with as3

I'm using TestFlight to test my app.
I uploaded on itunesConnect and after some problems, now it works fine and I think I understood itunesConnect's flow.
Now I want to monitor the user experience (just for my testers) and I want to know where the user is clicking and if sometimes the app crashes.
I remember that TestFlight had some API to do this, but now I can't find them!
Maybe it was an old features when it wasn't buy from Apple. I don't know... but I don't find any good information about the API.
I'm working inside Flash Builder using as3. Any idea?
Thanks a lot!
As I mentioned in my comments, this is not acheivale at full by ItunesConnect and its App Analytics, I am using and recommend you to try this tool: https://www.appsee.com/ it matches what you want and shows really good UX analytics.

How do I package an HTML5 web app as an Android app?

I have been searching the Internet for hours and I still have no idea what it is or what to do - I was assigned this task by my boss.
Please somebody just give me a step-by-step guide on what to do. I can look up the individual steps on my own; I just need to know the process.
And please don't post links; I have been doing that for the past hour and I just need someone to give me a brief outline (kind of like what Wikihow or eHow does).
Thank you.
If your application is all in HTML, you can use a framework such as Apache Cordova (formerly known as PhoneGap) to package it into an Android app.
There are instructions on the official website on how to do that: http://cordova.apache.org/docs/en/3.5.0/guide_platforms_android_index.md.html#Android%20Platform%20Guide

Execute Shell Command, and read it's output in Chrome Packaged Apps

I need to develop a Chrome Packaged App that will work as a UI for a console application.
For this I need to find a way to be able to execute that console application inside my Packaged App and read it's outputs.
This is a simple task to do in another platforms such as .NET (which I use nowadays).
I've googled everywhere and searched here on Stackoverflow, but I can't seem to find anything related.
The only interoperability I found is NPAPI, (which is about to be discontinuead). So...
Does anyone have a knowledge about this and could give an example or documentarion on how to achieve it?
Thanks!
There's a feature as part of Chrome extensions that might suit you needs called native messaging.
http://developer.chrome.com/extensions/messaging.html#native-messaging-client

jQMobi documentation mirror

Just got started and running with jqMobi, which is now called 'intel's application framework' (cheesy name eh)
Along with intel's porting to their new site, they forgot to put the full docs online (at least I can't find it). Now there's only minimal documentation, like the getting started. I'd like to get on with it.
Anyone knows where the (full) docs are hosted? I really hate to go look for another framework again.
The documentation is all there. The only thing they did not add was the "testdrive", which is just the kitchen sink sample found in github
In my opinion the docs are somewhat scattered, but there's some helpful stuff if you can find it. I keep bookmarks for these links. There are some links from those that get you to more stuff.
http://html5dev-software.intel.com/documentation/jqmobiapis/index.html
http://app-framework-software.intel.com/documentation.php?r=9057
http://developer.html5dev-software.intel.com/
http://www.html5dev-software.intel.com/documentation/
Actually they split off where appMobi is a cloud services company to support apps, and Intel took the part to build the apps. So you may still need/want appMobi. Their docs are on their site of course. There is still some duplication on the appMobi site.
Technically I don't think jqMobi is the same thing as the Intel App Framework, but at the same time I have a hard time understanding what's called what anymore. I'm sure they'll clear this up over time. I hope they find names that can be useful tags on stackoverflow.com!

android: how can i access NotificationCompat.Builder using android-support-v4-r6-googlemaps.jar?

In my app I use just one FragmentActivity and implement all other Functions as Fragments. The app should be compatible down to Android 1.6.
Due to the fact that I need a Mapview I implemented the android-support-v4-r6-googlemaps.jar, which works great.
Now I have to implement an alarmsystem with notifications, and then I got stuck. For notifications I seem to need the NotificationCompat.Builder, which is in android-support-v4.jar, but not in my support-library. I can't use both libraries in the same app, but I need at least the Notification package from the android-support-v4.jar. Can I extract this package somehow? Or is there any other solution?
I've been searching for a solution during a lot of hours, but I couldn't find any helpful.
Many thanks in advance for your help!
I've been having the same problem.
For now I'm just checking android versions, using deprecated approaches for older versions and suppressing the deprecation warnings.
Not a very clean way to handle it, but for now, it'll do.