[mono-android] Errors on the listview tutorial page - where to report them?

2012-02-19 Thread Paul Johnson

Hi,

There are a number of errors on the Xamarin website for listview. Do 
they need to be reported via bugzilla or can I just put them here and 
hope they get picked up? As it stands, the page is OK, but the code 
examples are pretty useless.


Paul
___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid


[mono-android] iOS and Android widget mapping question

2012-02-19 Thread Paul Johnson

Hi,

Is there a list anywhere of which iOS widgets map to which Android 
widgets more or less? For example UITableView (iOS) is more or less 
ListView for Android.


Thanks

Paul
___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid


Re: [mono-android] Build script on mac

2012-02-19 Thread Jonathan Pryor
On Feb 19, 2012, at 2:07 AM, Steven Pack wrote:
> Where are all the targets defined?

They're included within the .csproj, which means that I should have mentioned 
that you need to run xbuild on the .csproj. :-)

This fails:

xbuild YourSolution.sln /t:Install

This _may_ fail:

xbuild /t:Install

It will fail if the directory contains both .sln and .csproj files, as the .sln 
gets priority.

You need to explicitly provide the project file:

xbuild YourProject.csproj /t:Install

MSBuild on Windows is the same way: there are SignAndroidPackage and the other 
targets, but they'll only be found if you build the .csproj, not the .sln.

> And how do import them?

They're imported automatically in the .csproj:

 


> It looks like xbuild does try to import Mono.MonoMac.targets which I assume 
> is where they are located...?

I would guess that your solution has both Mono for Android projects and MonoMac 
projects, and somehow you're executing the MonoMac project.

> Also, how do I specifiy Clean and RebuildAll? Are they just targets?

Yes, they're just targets. I don't know about RebuildAll, but Clean is also 
specified on the .sln:

xbuild /t:Clean
xbuild /t:Clean YourSolution.sln

 - Jon

___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid


Re: [mono-android] Newbie - confused on custom attribute vs AndroidManifest.xml and other things

2012-02-19 Thread Jonathan Pryor
On Feb 18, 2012, at 7:57 PM, tweaver60 wrote:
> if I can use a combination of custom attributes, with adding my own items 
> into the AndroidManifest.xml file, such as receiver.

You can, and in some instances, you must.

The rule of thumb is that if the type is written in C# AND it is an Activity, 
Service, BroadcastReceiver, or ContentProvider, then you should use the custom 
attributes (which coincidentally have the same name as the base type ;-). 
Otherwise you must use XML within AndroidManifest.xml.

For example, AdMob provides a Java Activity that you need to add to your 
AndroidActivity.xml. There is no way to use custom attributes for the AdMob 
activity, so you must instead add the  to 
Properties\AndroidManifest.xml:



> I am very confused by the following statement in that article: "The merging 
> that mandroid.exe produces is trivial: it uses the custom attributes within 
> the code to generate XML elements, and inserts those elements into 
> AndroidManifest.xml. Elements nested within /manifest/application are not 
> merged, and Properties\AndroidManifest.xml always overrides data provided by 
> custom attributes."
> 
> Especially the nesting, since most of the custom attributes I would think go 
> inside the application tag.

That is correct, [Activity], [Service], etc. generate elements within the 
//application element.

What the text means is this: consider the following type:

namespace Example {
[Service]
public class MyService : Service { /* ... */ }
}

This will generate an Android Callable Wrapper named `example.MyService`, and 
would normally generate the appropriate XML:




HOWEVER, if your AndroidManifest.xml _already_ contains a declaration for that 
type:




then the Properties\AndroidManifest.xml version overrides whatever you 
specified in the custom attributes. So if you update your C# code:

[Service(Icon="@drawable/foo")]
public class MyService : Service { /* ... */ }

the resulting AndroidManifest.xml will NOT contain a //service/@android:icon 
attribute, because you already provided the 
//service[@android:name="example.MyService"] element.

As the documentation states, no merging is done: it's one or the other, and 
AndroidManifest.xml trumps custom attributes.

> Ultimately,  my goal is to create a widget, but the tutorial I found (using 
> Eclipse/Java) discusses creating an XML to define the AppWidget provider

Presumably it's something like this:

http://developer.android.com/guide/topics/appwidgets/index.html

The XML it uses is a  element, so you could just use the 
[BroadcastReceiver] custom attribute to generate the  element. That 
example also has  and , which also have custom 
attributes defined:

[BroadcastReceiver]
[IntentFilter (new[]{"android.appwidget.action.APPWIDGET_UPDATE"})]
[MetaData ("android.appwidget.provider", 
Resource="@xml/example_appwidget_info")]
class MyAppWidgetProvider : Android.Appwidget.AppWidgetProvider {
// ...
}

However, there are no custom attributes for the  element, 
so that would need to be manually provided (and it wouldn't be within 
AndroidManifest.xml either; "Define the AppWidgetProviderInfo object in an XML 
resource...").

> and I'm not sure where to place that XML file, since the folder structure is 
> quite different from the Mono for Android structure.

It's not that different. What Android calls "res" we call "Resources"; the 
contents are the same. Thus, for an XML resource, you'd want to create 
Resources\xml\example_appwidget_info.xml. Don't forget to set its Build action 
to AndroidResource; failure to do so will prevent the resource from being added 
to the Android package.

 - Jon

___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid


Re: [mono-android] iOS and Android widget mapping question

2012-02-19 Thread Miljenko Cvjetko

Hi

On 2012.02.19 12:06, Paul Johnson wrote:

Hi,

Is there a list anywhere of which iOS widgets map to which Android 
widgets more or less? For example UITableView (iOS) is more or less 
ListView for Android.

The one we started with is Craig Dunn's:
http://conceptdev.blogspot.com/2011_03_01_archive.html
We are entering MonoTouch field and started to write own table with a 
bit enhancements

(Assets, XAP files, working on filesystem locations, concepts...)...

The idea was to bring MT and M4A closer to .net devs (desktop, 
silverlight).

Content level is more for our team members which are beginners/students...

url:
http://www.holisticware.net/HolisticWare/Know-How/development/multitargeting-portability-interoperability/ui-development-presentation-layer-framework-comparison.aspx

We apologize for errors (which are there) for sure and for layout 
(increase font).
The new web is under construction and those will be with 
SyntaxHighligter and MooTools for

better readability.

regards

mel




Thanks

Paul
___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid



--
Miljenko Cvjetko dipl.ing. ET
Direktor/CEO
Projektant rješenja/Solution Architect  
Razvojni programer/Senior developer
Voditelj projekta/Project Manager

IX južna obala 13
Kajzerica Zagreb
T: 385 1 777
M: 385 91 557 447 3
F: 385 1 7779556
e: mcvje...@holisticware.net
w: http://www.holisticware.net

___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid


Re: [mono-android] Trendfftrtrtuy9811766443:43888770; ())(((,.~}~~#~<<<<~~~~~~~~~~<~~~~~~~~}~~}}}}}<##<##}}}}>>~.hahfjjwjf75)$;

2012-02-19 Thread Alex Soto
Yes i knew it ;) we have a smart kid =D

Alex

Enviado desde mi iPhone

El 19/02/2012, a las 01:29 a.m., James Bentley 
escribió:

 Haha - My 4 year old managed to send this.

> Date: Fri, 17 Feb 2012 14:45:06 +
> From: sh...@xamarin.com
> To: monodroid@lists.ximian.com
> Subject: Re: [mono-android] Trendfftrtrtuy9811766443:43888770;
())(((,.~}~~#~~~<}~~}<##<##>>~.hahfjjwjf75)$;
>
> This is clearly kitty code detailing invasion plans.
>
> On Fri, Feb 17, 2012 at 12:42 PM, Miljenko Cvjetko
>  wrote:
> > Hi
> >
> >
> > On 2012.02.17 02:40, James Bentley wrote:
> >>
> >> Hfhfhfhruuruhdyfheyydrjhdh
> >>
> >>
6:6373$$:)26.$;$,$4&!,$(!($,$(&$&1$;$,$($$,$,'cjfhjxhgjfjvhncnfnnfcnmfgmgkgkjjgjghxjgjxjfjkcjhcjykmgjghkkckkfjxjhfcjfjdhxjhtdjhxjjfjhrhfkhdjtjfjfmfnngjfjhfhfhsuhudurhfuhfjjdjfjfjcjcjhjfjfjjfjrkrjjtjfrijfitititifjfjfiufgkkfkrnjccjfjdjfjhigkfkgktjyjgrkfkjtjkjcjgjfjdjjjifjfkkgjkjgjfjjvkkgkgktktktmrkgjgjgjgjjjgfjfkkgogitofiffiyijtitifitjjgjtjyihtiitijiitifitifkgjgjgkdkfkbgjgkfkkktjgggkgktktkykgkgkgkykgkhkgkgkgkgkgkykkglgkgogkgkkykhkhkgkgkgkgkgkgkgogigogkgkgkgkgkkggigogiggigohkkkykgkkgkkgkgkhkgkgkjgiiggogkkgkvkkgvkkgkkkgkgkfkfkfkfktktktkktrktktktifkkgktkgktktkktyitktktktktktutkttktktikfokz&94@
(@(@@(&(&(&gofkkgkkfkffuffyfuuiivkvigjggkhkgkggkigffiiigigigjgjgjjhfhjfhhcjfjfjjgjghjvjjgjgkgkjgkgkogogohobokhlglhkhkvkykykylkyykul
> >
> > Don't worry Jonathan will answer this one for sure!
> >
> > regards
> >
> > mel
> >
> >> Sent from my iPhone
> >> ___
> >> Monodroid mailing list
> >> Monodroid@lists.ximian.com
> >>
> >> UNSUBSCRIBE INFORMATION:
> >> http://lists.ximian.com/mailman/listinfo/monodroid
> >
> >
> >
> > --
> > Miljenko Cvjetko dipl.ing. ET
> >Direktor/CEO
> >Projektant rješenja/Solution Architect
> >Razvojni programer/Senior developer
> >Voditelj projekta/Project Manager
> >
> > IX južna obala 13
> > Kajzerica Zagreb
> > T: 385 1 777
> > M: 385 91 557 447 3
> > F: 385 1 7779556
> > e: mcvje...@holisticware.net
> > w: http://www.holisticware.net
> >
> >
> > ___
> > Monodroid mailing list
> > Monodroid@lists.ximian.com
> >
> > UNSUBSCRIBE INFORMATION:
> > http://lists.ximian.com/mailman/listinfo/monodroid
> ___
> Monodroid mailing list
> Monodroid@lists.ximian.com
>
> UNSUBSCRIBE INFORMATION:
> http://lists.ximian.com/mailman/listinfo/monodroid

___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid
___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid


Re: [mono-android] Trendfftrtrtuy9811766443:43888770; ())(((,.~}~~#~<<<<~~~~~~~~~~<~~~~~~~~}~~}}}}}<##<##}}}}>>~.hahfjjwjf75)$;

2012-02-19 Thread Benedikt Hübschen
It's brainfuck with some ignoreable syntax errors ;)

yozora:Downloads systemiya$ mono BFdotNet.exe code.bf code.exe
WARNING: The runtime version supported by this application is unavailable.
Using default runtime: v2.0.50727
Translator warning:
   Unexpected character : '6'
   Unexpected character : ':'
-- CUT ---
   Unexpected character : 'u'
   Unexpected character : 'l'
Translation successful!
Compilation successful!

yozora:Downloads systemiya$ mono --trace=program code.exe
[0xa014c540: 0,0 0] ENTER: BrainfuckNamespace.BrainfuckClass:.cctor ()()
[0xa014c540: 0,4 0] LEAVE: BrainfuckNamespace.BrainfuckClass:.cctor ()
[0xa014c540: 0,00016 0] ENTER: (wrapper runtime-invoke)
:runtime_invoke_void_object (object,intptr,intptr,intptr)(0x0,
0xb908, 0x0, 0x631ce8, )
[0xa014c540: 0,00018 1] ENTER: BrainfuckNamespace.BrainfuckClass:Main
(string[])(0x3d9e00, )
[0xa014c540: 0,00030 2] ENTER: BrainfuckNamespace.BrainfuckClass:Putchar
(byte)(0, )
[0xa014c540: 0,02074 2] LEAVE: BrainfuckNamespace.BrainfuckClass:Putchar
(byte)
[0xa014c540: 0,02090 2] ENTER: BrainfuckNamespace.BrainfuckClass:Getchar
()()

[0xa014c540: 2,20535 2] LEAVE: BrainfuckNamespace.BrainfuckClass:Getchar
()result=10
[0xa014c540: 2,20539 2] ENTER: BrainfuckNamespace.BrainfuckClass:Getchar
()()

[0xa014c540: 2,92963 2] LEAVE: BrainfuckNamespace.BrainfuckClass:Getchar
()result=10
[0xa014c540: 2,92969 2] ENTER: BrainfuckNamespace.BrainfuckClass:Getchar
()()

[0xa014c540: 3,52162 2] LEAVE: BrainfuckNamespace.BrainfuckClass:Getchar
()result=10
[0xa014c540: 3,52168 2] ENTER: BrainfuckNamespace.BrainfuckClass:Getchar
()()

[0xa014c540: 4,01778 2] LEAVE: BrainfuckNamespace.BrainfuckClass:Getchar
()result=10
[0xa014c540: 4,01786 2] ENTER: BrainfuckNamespace.BrainfuckClass:Getchar
()()

[0xa014c540: 4,44178 2] LEAVE: BrainfuckNamespace.BrainfuckClass:Getchar
()result=10
[0xa014c540: 4,44185 2] ENTER: BrainfuckNamespace.BrainfuckClass:Getchar
()()

[0xa014c540: 4,83350 2] LEAVE: BrainfuckNamespace.BrainfuckClass:Getchar
()result=10
[0xa014c540: 4,83355 1] LEAVE: BrainfuckNamespace.BrainfuckClass:Main
(string[])
[0xa014c540: 4,83358 0] LEAVE: (wrapper runtime-invoke)
:runtime_invoke_void_object
(object,intptr,intptr,intptr)[OBJECT:0x0]
yozora:Downloads systemiya$


Von:  Alex Soto 
Antworten an:  Discussions related to Mono for Android

Datum:  Sun, 19 Feb 2012 10:48:51 -0600
An:  Discussions related to Mono for Android 
Betreff:  Re: [mono-android] Trendfftrtrtuy9811766443:43888770;
())(((,.~}~~#~~~<}~~}<##<##>>~.hahfjjwjf75)$;

Yes i knew it ;) we have a smart kid =D

Alex

Enviado desde mi iPhone

El 19/02/2012, a las 01:29 a.m., James Bentley 
escribió:

> Haha - My 4 year old managed to send this.
> 
>> > Date: Fri, 17 Feb 2012 14:45:06 +
>> > From: sh...@xamarin.com
>> > To: monodroid@lists.ximian.com
>> > Subject: Re: [mono-android] Trendfftrtrtuy9811766443:43888770;
>> ())(((,.~}~~#~~~<}~~}<##<##>>~.hahfjjwjf75)$;
>> > 
>> > This is clearly kitty code detailing invasion plans.
>> > 
>> > On Fri, Feb 17, 2012 at 12:42 PM, Miljenko Cvjetko
>> >  wrote:
>>> > > Hi
>>> > >
>>> > >
>>> > > On 2012.02.17 02:40, James Bentley wrote:
 > >>
 > >> Hfhfhfhruuruhdyfheyydrjhdh
 > >>
 > >> 
 6:6373$$:)26.$;$,$4&!,$(!($,$(&$&1$;$,$($$,$,'cjfhjxhgjfjvhncnfnnfcnmfgmgkg
 kjjgjghxjgjxjfjkcjhcjykmgjghkkckkfjxjhfcjfjdhxjhtdjhxjjfjhrhfkhdjtjfjfmfnng
 jfjhfhfhsuhudurhfuhfjjdjfjfjcjcjhjfjfjjfjrkrjjtjfrijfitititifjfjfiufgkkfkrn
 jccjfjdjfjhigkfkgktjyjgrkfkjtjkjcjgjfjdjjjifjfkkgjkjgjfjjvkkgkgktktktmrkgjg
 jgjgjjjgfjfkkgogitofiffiyijtitifitjjgjtjyihtiitijiitifitifkgjgjgkdkfkbgjgkf
 kkktjgggkgktktkykgkgkgkykgkhkgkgkgkgkgkykkglgkgogkgkkykhkhkgkgkgkgkgkgkgogi
 gogkgkgkgkgkkggigogiggigohkkkykgkkgkkgkgkhkgkgkjgiiggogkkgkvkkgvkkgkkkgkgkf
 kfkfkfktktktkktrktktktifkkgktkgktktkktyitktktktktktutkttktktikfokz&94@(@(@@
 (&(&(&gofkkgkkfkffuffyfuuiivkvigjggkhkgkggkigffiiigigigjgjgjjhfhjfhhcjfjfjj
 gjghjvjjgjgkgkjgkgkogogohobokhlglhkhkvkykykylkyykul
>>> > >
>>> > > Don't worry Jonathan will answer this one for sure!
>>> > >
>>> > > regards
>>> > >
>>> > > mel
>>> > >
 > >> Sent from my iPhone
 > >> ___
 > >> Monodroid mailing list
 > >> Monodroid@lists.ximian.com
 > >>
 > >> UNSUBSCRIBE INFORMATION:
 > >> http://lists.ximian.com/mailman/listinfo/monodroid
>>> > >
>>> > >
>>> > >
>>> > > --
>>> > > Miljenko Cvjetko dipl.ing. ET
>>> > >Direktor/CEO
>>> > >Projektant rješenja/Solution Architect
>>> > >Razvojni programer/Senior developer
>>> > >Voditelj projekta/Project Manager
>>> > >
>>> > > IX južna obala 13
>>> > > Kajzerica Zagreb
>>> > > T: 385 1 777
>>> > > M: 385 91 557 447 3
>>> > > F: 385 1 7779556
>>> > > e: mcvje...@holisticware.net
>>> > > w: http://www.holisticware.net
>>> > >
>>> > >
>>> > > ___
>>> > > Mono

[mono-android] ScrollWheel in C#?

2012-02-19 Thread Paul Johnson

Hi,

Does anyone know if there is a monodroid port of this?

http://code.google.com/p/android-wheel/source/browse
/#svn%2Ftrunk%2Fwheel%2Fsrc%2Fkankan%2Fwheel%2Fwidget

I really don't fancy porting almost 50K of Java to C#

Paul
___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid


Re: [mono-android] Newbie - confused on custom attribute vs AndroidManifest.xml and other things

2012-02-19 Thread tweaver60
Jon,

Thank you s much for all the information - it makes complete sense - I'm
rollin now!!!

Cheers,

Tim 

--
View this message in context: 
http://mono-for-android.1047100.n5.nabble.com/Newbie-confused-on-custom-attribute-vs-AndroidManifest-xml-and-other-things-tp5496165p5497283.html
Sent from the Mono for Android mailing list archive at Nabble.com.
___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid


[mono-android] how to access an activity from broadcast receiver

2012-02-19 Thread tweaver60
I'm sure this is a beginner question, please bear with me: 

I'm trying to create an intent inside a broadcast receiver for an activity -
can't seem to figure out how to access the class (does not compile), as they
do in a sample Java app I'm looking at

// Create an Intent to launch ExampleActivity
Intent intent = new Intent(context,* Activity1*);  //Java
accesses as *Activity1.class*
PendingIntent pendingIntent =
PendingIntent.GetActivity(context, 0, intent, 0);

I've tried appname.Activity1 which also does not compile.  Activity1 comes
up in intellisense, but throws an error.

Thanks for any help,

Tim




--
View this message in context: 
http://mono-for-android.1047100.n5.nabble.com/how-to-access-an-activity-from-broadcast-receiver-tp5497414p5497414.html
Sent from the Mono for Android mailing list archive at Nabble.com.
___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid


Re: [mono-android] how to access an activity from broadcast receiver

2012-02-19 Thread Jonathan Pobst

Try:

Java.Lang.Class.FromType (typeof (Activity1))

Jonathan

On 2/19/2012 1:50 PM, tweaver60 wrote:

I'm sure this is a beginner question, please bear with me:

I'm trying to create an intent inside a broadcast receiver for an activity -
can't seem to figure out how to access the class (does not compile), as they
do in a sample Java app I'm looking at

 // Create an Intent to launch ExampleActivity
 Intent intent = new Intent(context,* Activity1*);  //Java
accesses as *Activity1.class*
 PendingIntent pendingIntent =
PendingIntent.GetActivity(context, 0, intent, 0);

I've tried appname.Activity1 which also does not compile.  Activity1 comes
up in intellisense, but throws an error.

Thanks for any help,

Tim




--
View this message in context: 
http://mono-for-android.1047100.n5.nabble.com/how-to-access-an-activity-from-broadcast-receiver-tp5497414p5497414.html
Sent from the Mono for Android mailing list archive at Nabble.com.
___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid




___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid


Re: [mono-android] how to access an activity from broadcast receiver

2012-02-19 Thread tweaver60
Bingo - thank you!

--
View this message in context: 
http://mono-for-android.1047100.n5.nabble.com/how-to-access-an-activity-from-broadcast-receiver-tp5497414p5497483.html
Sent from the Mono for Android mailing list archive at Nabble.com.
___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid


[mono-android] Won't re-innstall after uninstall

2012-02-19 Thread Triplany
Running Windows 7 x64, VS 2010, latest service packs etc.. I installed an ssd
drive and wanted to change certain file locations so I uninstalled
monodroid, monodevelop and a few other programs.

Move what I need to around and everything works great. do to install
monodroid and says it's already installed along with all the components. So
I clean out all registry information I could find from monodroid as well as
any files I could find related in appdata/ try again same thing already
installed.  uninstall gtk. still says I have everything installed. so I go
ahead and download gtk install it, install monodevelop, try monodroid and
still thinks everything is installed. I think you get the picture that no
matter what component I have installed, uninstalled, etc.. it always thinks
everything is installed even though the components them selves such as gtk,
monodevelop are installing and uninstalling fine (I even removed their
directories and tried installing monodroid).

Not sure what I am missing to get monodroid to install again the log wasn't
much help as it just says everything is there even when they are not.

[2012-02-19 23:39:41.658] [Info] Installation ID:
6949b362-bfe1-43ff-9760-fd0fc574338f
[2012-02-19 23:39:41.658] [Info] Operating system: Windows 7 v6.1.7601.65536
(Ultimate (Service Pack 1); Microsoft Windows NT 6.1.7601 Service Pack 1),
64-bit
[2012-02-19 23:39:41.658] [Info] Installer version: 2.0.0.8
[2012-02-19 23:39:41.658] [Info] Status: in progress
[2012-02-19 23:39:41.658] [Debug] Manifest retrieval task starting.
[2012-02-19 23:39:41.658] [Info] Retrieving installation manifest.
[2012-02-19 23:39:41.658] [Info] Downloading from
'http://xamarin.com/download/installer/Windows/MonoForAndroid/InstallationManifest.xml'.
[2012-02-19 23:39:43.078] [Debug] Waiting for manifests to finish
downloading.
[2012-02-19 23:39:44.497] [Debug] Constructing detection UI.
[2012-02-19 23:39:44.497] [Debug] Manifests retrieved.
[2012-02-19 23:39:44.497] [Info] Determining list of software items to
install.
[2012-02-19 23:39:44.497] [Debug] Processing update nodes from the manifest.
[2012-02-19 23:39:44.497] [Info] Waiting for detection to finish
[2012-02-19 23:39:44.497] [Info] Detection complete
[2012-02-19 23:39:44.497] [Info] Component detection complete
[2012-02-19 23:39:44.497] [Debug] Download service starting.
[2012-02-19 23:39:44.497] [Debug] Creating and initializing software item
'Java JDK'
[2012-02-19 23:39:44.497] [Debug] Creating and initializing software item
'Android SDK'
[2012-02-19 23:39:44.513] [Debug] Creating and initializing software item
'GTK#'
[2012-02-19 23:39:44.513] [Debug] Creating and initializing software item
'MonoDevelop'
[2012-02-19 23:39:44.513] [Debug] Creating and initializing software item
'Mono for Android'
[2012-02-19 23:39:44.513] [Debug] Detection completed.
[2012-02-19 23:39:44.513] [Info] No software needs to be installed.
[2012-02-19 23:39:44.513] [Info] Status: successful


--
View this message in context: 
http://mono-for-android.1047100.n5.nabble.com/Won-t-re-innstall-after-uninstall-tp5497806p5497806.html
Sent from the Mono for Android mailing list archive at Nabble.com.
___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid


[mono-android] Good format for android help-files

2012-02-19 Thread frankhevans
I wrote up a helpfile for my app, and I'd like to include a help file.

1. First I added the help file to my assets folder as an HTML file, but the
embedded images didn't show (I included them in the assets folder as well,
not sure why they didn't show)

2. Then I converted to PDF, and published a view intent, but the PDF reader
couldn't access my PDF, and even if I copy it somewhere public, there is
still no guarantee a PDF reader will be available to all clients.

This isn't really a mono for android question, but I view this forum as my
community, so thought I'd submit it for consideration. Thanks in advance...

--
View this message in context: 
http://mono-for-android.1047100.n5.nabble.com/Good-format-for-android-help-files-tp5498136p5498136.html
Sent from the Mono for Android mailing list archive at Nabble.com.
___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid


[mono-android] Typical applications architecture that deal with data in online and offline situations

2012-02-19 Thread Andrea
Hello, I'm a old developer but newer in android and ios platform.

I'd like to know if there is a simple workaround to realize an application
which has to work with centralized data in a server but devices can be in
offline situation.

I thought to use sqlLite in the device and build some service (web service?)
to communicate with the centralized DB.

What's the typical architecture in these case?

There is something ready, a library or similar?

Thanks in advance.

--
View this message in context: 
http://mono-for-android.1047100.n5.nabble.com/Typical-applications-architecture-that-deal-with-data-in-online-and-offline-situations-tp5497272p5497272.html
Sent from the Mono for Android mailing list archive at Nabble.com.
___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid


Re: [mono-android] Typical applications architecture that deal with data in online and offline situations

2012-02-19 Thread Miljenko Cvjetko

Hi

On 2012.02.19 19:12, Andrea wrote:

Hello, I'm a old developer but newer in android and ios platform.

I'd like to know if there is a simple workaround to realize an application
which has to work with centralized data in a server but devices can be in
offline situation.

This is common scenario with mobile apps.


I thought to use sqlLite in the device and build some service (web service?)
to communicate with the centralized DB.

Right direction.
Because WCF support in mono is really basic it is not recommended to use 
it if it is expected

to be a lot of specific/custom/deep-dive code...
See http://www.mono-project.com/WCF_Development
So, the best bet would be classical SOAP Web Services or REST services...


What's the typical architecture in these case?

Maybe classical client/server

 * client - mobile
   WS proxy + minimal BusinessLogic + datastore
 * server
   WS services + BusinesLogic + datastore

regards

mel



There is something ready, a library or similar?

Thanks in advance.

--
View this message in context: 
http://mono-for-android.1047100.n5.nabble.com/Typical-applications-architecture-that-deal-with-data-in-online-and-offline-situations-tp5497272p5497272.html
Sent from the Mono for Android mailing list archive at Nabble.com.
___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid



--
Miljenko Cvjetko dipl.ing. ET
Direktor/CEO
Projektant rjes(enja/Solution Architect 
Razvojni programer/Senior developer
Voditelj projekta/Project Manager

IX juz(na obala 13
Kajzerica Zagreb
T: 385 1 777
M: 385 91 557 447 3
F: 385 1 7779556
e: mcvje...@holisticware.net
w: http://www.holisticware.net

___
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid