Re: Android Intents/iOS Extensions?

2015-04-26 Thread Monte Goulding
On 25 Apr 2015, at 5:42 am, J. Landman Gay wrote: > I'm still trying to figure out why my manifest isn't working but yours does. > Do you think line endings matter? I've got mine set up with Linux endings. I'm not sure... I think what you need to do is set a breakpoint in revSaveAsAndroidStan

Re: Android Intents/iOS Extensions?

2015-04-24 Thread J. Landman Gay
On 4/23/2015 8:07 PM, Monte Goulding wrote: OK, here it is... sorry Jacque for leading you up a garden path on that forum topic we discussed this on. Thanks Monte. The garden path was productive, it led me to a fix. :) However, given your specific case where even if you edit the manifest in

Re: Android Intents/iOS Extensions?

2015-04-23 Thread Monte Goulding
On 24 Apr 2015, at 1:41 pm, Richard Gaskin wrote: > Right. I had mistakenly thought that was the mechanism for intents. > > If not for inter-app communications, what's the point of urkWakeUp? > > Who uses that, and what for? On iOS the Dropbox app uses it for authentication for third party a

Re: Android Intents/iOS Extensions?

2015-04-23 Thread Richard Gaskin
Monte Goulding wrote: > >> On 24 Apr 2015, at 11:38 am, Richard Gaskin wrote: > >> In my rabid desire for this it seems I've misunderstood what >> the urlWakeUp message and mobileGetLaunchUrl function are for. >> >> My hope was that urlWakeUp would launch my app and allow me to >> respond with a c

Re: Android Intents/iOS Extensions?

2015-04-23 Thread Monte Goulding
On 24 Apr 2015, at 1:16 pm, Richard Gaskin wrote: > Monte Goulding wrote: > > > On 24 Apr 2015, at 11:38 am, Richard Gaskin wrote: > > > >> Does that mean I should be able to add intents to my Android > >> build so my app can be among those that can receive specified > >> file types? > > > > Ye

Re: Android Intents/iOS Extensions?

2015-04-23 Thread Richard Gaskin
Monte Goulding wrote: > On 24 Apr 2015, at 11:38 am, Richard Gaskin wrote: > >> Does that mean I should be able to add intents to my Android >> build so my app can be among those that can receive specified >> file types? > > Yes and no, it means you could add the intent filters to your > manifest

Re: Android Intents/iOS Extensions?

2015-04-23 Thread Monte Goulding
On 24 Apr 2015, at 11:38 am, Richard Gaskin wrote: > Does that mean I should be able to add intents to my Android build so my app > can be among those that can receive specified file types? Yes and no, it means you could add the intent filters to your manifest but there's still no way for yo

Re: Android Intents/iOS Extensions?

2015-04-23 Thread Richard Gaskin
Monte Goulding wrote: > The good news is you should be fine to copy the raw files from the > above pull request into the LC app bundle. > > https://raw.githubusercontent.com/montegoulding/livecode/feature/TemplateAppMetadata/ide-support/revsaveasandroidstandalone.livecodescript > > However, giv

Re: Android Intents/iOS Extensions?

2015-04-23 Thread Monte Goulding
On 24 Apr 2015, at 8:08 am, Mark Wilcox wrote: >> On 23 Apr 2015, at 18:43, Richard Gaskin wrote: >> >> 1. Before I dive in, does anyone here know why this wouldn't work? > > Custom URLs and Intents are two different systems. The former requires the > app you receive data from to know about

Re: Android Intents/iOS Extensions?

2015-04-23 Thread Monte Goulding
On 24 Apr 2015, at 9:37 am, Monte Goulding wrote: > Actually I've just reviewed my changes and it looks like I stuffed them up. > I'll submit another pull request in a minute and add custom plists for iOS > too. OK, here it is... sorry Jacque for leading you up a garden path on that forum to

Re: Android Intents/iOS Extensions?

2015-04-23 Thread Monte Goulding
Actually I've just reviewed my changes and it looks like I stuffed them up. I'll submit another pull request in a minute and add custom plists for iOS too. On 24 Apr 2015, at 4:11 am, Richard Gaskin wrote: > I'm an optimist. :) > > Unless there's some technical reason this is murky, it seems l

Re: Android Intents/iOS Extensions?

2015-04-23 Thread Mark Wilcox
> On 23 Apr 2015, at 18:43, Richard Gaskin wrote: > > 1. Before I dive in, does anyone here know why this wouldn't work? Custom URLs and Intents are two different systems. The former requires the app you receive data from to know about your custom URL scheme. The same exists on both iOS and An

Re: Android Intents/iOS Extensions?

2015-04-23 Thread Richard Gaskin
Jacque wrote: > On 4/23/2015 12:59 PM, Richard Gaskin wrote: >> Looks like Monte's already submitted a pull request (thanks Monte!), >> so hopefully it won't be much longer. > > Except that he submitted the request 5 months ago. I'm an optimist. :) Unless there's some technical reason this is m

Re: Android Intents/iOS Extensions?

2015-04-23 Thread J. Landman Gay
On 4/23/2015 12:59 PM, Richard Gaskin wrote: Jacque wrote: > Good luck revising the manifest in Android. I am unable to do that, > though Monte says it should work and he submitted a fix for it quite > a while ago. > > Forum thread is here: >

Re: Android Intents/iOS Extensions?

2015-04-23 Thread Richard Gaskin
Jacque wrote: > Good luck revising the manifest in Android. I am unable to do that, > though Monte says it should work and he submitted a fix for it quite > a while ago. > > Forum thread is here: > > > We do need a way to provide our own man

Re: Android Intents/iOS Extensions?

2015-04-23 Thread J. Landman Gay
On 4/23/2015 12:43 PM, Richard Gaskin wrote: However, that tutorial only shows how to have two LC apps pass info to each other, and not how to allow an LC app to receive data from any other app. This seems to be the role of the intents in the Android manifest, and while I haven't yet tried it I'

Re: Android Intents/iOS Extensions?

2015-04-23 Thread Richard Gaskin
Mark Wilcox wrote: > On Thu, Apr 23, 2015, at 03:45 AM, Richard Gaskin wrote: >> I'd like to have an app be able to accept data from other programs, >> like when you click the Share button in an image gallery and a list >> of programs pops up that can accept images - I'd like mine to be >> among

Re: Android Intents/iOS Extensions?

2015-04-23 Thread Mark Wilcox
On Thu, Apr 23, 2015, at 03:45 AM, Richard Gaskin wrote: > I'd like to have an app be able to accept data from other programs, like > when you click the Share button in an image gallery and a list of > programs pops up that can accept images - I'd like mine to be among them. > > I can see from t

Android Intents/iOS Extensions?

2015-04-22 Thread Richard Gaskin
I'd like to have an app be able to accept data from other programs, like when you click the Share button in an image gallery and a list of programs pops up that can accept images - I'd like mine to be among them. I can see from the iOS and Android docs how to register that support in the manif