Re: [mono-android] JavaFinalize and .NET Finalizers

2016-06-21 Thread Jonathan Pryor
On Jun 21, 2016, at 3:40 PM, Jeremy A. Kolb - ARA/NED wrote: > We put Activation constructors almost everywhere because they tend to fix > crashes when coming back to an activity. There’s a fine line between a “fix” and “hides the symptoms of the actual problem.” :-) > Plus we allow almost all

Re: [mono-android] JavaFinalize and .NET Finalizers

2016-06-20 Thread Jonathan Pryor
On Jun 17, 2016, at 9:50 AM, Jeremy A. Kolb - ARA/NED wrote: > I'm investigating https://github.com/MvvmCross/MvvmCross/issues/1343 for a > possible memory leak related to our version of the RecyclerView widget > MvxRecyclerView and have run against an interesting issue. > > When swapping out t

Re: [mono-android] Creating bindings for Layer

2015-03-10 Thread Jonathan Pryor
On Mar 10, 2015, at 11:46 AM, Paul Johnson wrote: > When I'm building, I'm getting two errors, both are the same > > obj/Debug/generated/src/Com.Layer.Sdk.Internal.Query.ConversationQueryRepository.cs(65,113): > error CS0508: > `Com.Layer.Sdk.Internal.Query.ConversationQueryRepository.A(Com.Lay

Re: [mono-android] Xamarin Android Release Build Error

2014-04-17 Thread Jonathan Pryor
Sorry for the delay... On Apr 8, 2014, at 2:04 AM, venkatesh wrote: > It is working fine with Debug mode, when we change to Release mode it shows > the error as > *You need to add a reference to Mono.Android.Export.dll when you use > ExportAttribute or ExportFieldAttribute.*. ... >

Re: [mono-android] Problem with SQLite and a managed code function

2014-04-05 Thread Jonathan Pryor
On Apr 5, 2014, at 4:50 PM, Vladimir Dimitrov wrote: > The question still have is why was everything working in debug mode while the > support for x86 was turned off? Debug .apk's contain libmonodroid.so for all ABIs, as this makes deployment easier. Rephrased: Debug builds ignore the $(Androi

Re: [mono-android] Problem with SQLite and a managed code function

2014-04-04 Thread Jonathan Pryor
On Apr 4, 2014, at 12:54 PM, Vladimir Dimitrov wrote: > The problem gets even stranger as if I run the code in debug mode then > everything works fine and I don't get the exception. But the problem happens > only when I run the release code...!!! What link mode does your project have? Is it Sdk

Re: [mono-android] Attribute [Application] do not work.

2014-02-28 Thread Jonathan Pryor
I'm not able to reproduce. Could you please file a bug at bugzilla.xamarin.com and attach a project which exhibits the error? Thanks, - Jon On Feb 27, 2014, at 7:55 AM, Ricardo Romao Soares wrote: > I extend the class Application on android and mark it with the attribute > [Application], bu

Re: [mono-android] Dll Assembly Reference Behaviour

2014-01-20 Thread Jonathan Pryor
On Jan 17, 2014, at 7:47 AM, Francesco Colombo wrote: > Then I build my Facebook wrapper, so I create two library projects, one for > iOS and Android. These library reference the the "binding.dll". From now on > we call these dlls "wrapper.dll". > > Finally I create two app projects, one for i

Re: [mono-android] Deserializing Json String to List Collection shows Null value

2014-01-20 Thread Jonathan Pryor
Please file a bug with a test case at bugzilla.xamarin.com. Thanks, - Jon On Jan 7, 2014, at 7:15 AM, venkatesh wrote: > Hi, > > I am trying to deserialize the JSON String from WCF Rest Service into C# > List collection. But deserialization showing null. > > *WCF Service* > > > > *GetJSON

Re: [mono-android] Error while Building Project on Release

2014-01-20 Thread Jonathan Pryor
On Jan 10, 2014, at 11:20 AM, catalina.chioveanu wrote: > It works if I set Sdk Assemblies only but not if is set it to Sdk and User > Assemblies. Linking both SDK and User assemblies is generally a good way to break things, as your assemblies won't be annotated with [Preserve] to ensure that

Re: [mono-android] Java Interface type to c# binding

2013-12-06 Thread Jonathan Pryor
On Dec 6, 2013, at 6:10 AM, venkatesh wrote: > As you said , i have attached Diagnostic build output for binding project. Here's the problem: > 1>JARTOXML : warning J2XA005: missing class error was raised while reflecting > setOnRefreshListener [public void > com.costum.android.widget.PullToRe

Re: [mono-android] Java Interface type to c# binding

2013-12-05 Thread Jonathan Pryor
On Dec 5, 2013, at 12:42 AM, venkatesh wrote: > 'Com.Costum.Android.Widget.PullAndLoadListView' does not contain a definition > for '*SetOnRefreshListner*' and no extension method 'SetOnRefreshListner' > accepting a first argument of type > 'Com.Costum.Android.Widget.PullAndLoadListView' could

Re: [mono-android] Building a package with a jar bindings library strips the jar file from the assembly

2013-12-01 Thread Jonathan Pryor
On Nov 28, 2013, at 11:29 AM, Vladimir Dimitrov wrote: > So after looking at the classes.dex it turns out that this library types are > not in there. Having in mind that this mean that "that's a problem. :-)" what > should be done to fix this problem? 1. Determine which .jar those types come fr

Re: [mono-android] GameCircle Amazon

2013-11-27 Thread Jonathan Pryor
On Nov 27, 2013, at 3:25 PM, Matteo Polito wrote: > O, this should be right!! Nope! It'll result in infinite recursion and stack overflow. You want: public abstract Java.Lang.Object DeepCopy(); You'll also need to double-check that the generated NumberList type has a GetDeepCopyHandle

Re: [mono-android] GameCircle Amazon

2013-11-27 Thread Jonathan Pryor
On Nov 27, 2013, at 3:57 AM, Matteo Polito wrote: > Com.Amazon.Ags.Client.Whispersync.Model.NumberList.cs(80,80): Error CS0103: > The name `DeepCopy' does not exist in the current context (CS0103) > (GameCircle.MonoDroid) > > The method is: // This method is explicitly implemented as a member o

Re: [mono-android] GameCircle Amazon

2013-11-26 Thread Jonathan Pryor
On Nov 26, 2013, at 3:43 AM, Matteo Polito wrote: > These are errors that I have: > > Com.Amazon.Ags.Client.Whispersync.GameDataSingleMap.cs(23,23): Error CS0738: > `Com.Amazon.Ags.Client.Whispersync.GameDataSingleMap' does not implement > interface member > `Com.Amazon.Ags.Client.Whispersync.

Re: [mono-android] Building a package with a jar bindings library strips the jar file from the assembly

2013-11-26 Thread Jonathan Pryor
On Nov 26, 2013, at 8:27 AM, Vladimir Dimitrov wrote: > I am trying to make a jar bindings project that I need in my app. > 1. I created a jar binding project. > 2. Added the .jar file in the Jars folder. > 3. Made it an EmbeddedJar > 4. Build the project > 5. Referenced the project from another p

Re: [mono-android] Problem with reflection

2013-10-18 Thread Jonathan Pryor
On Oct 18, 2013, at 10:57 AM, JLee wrote: > After outsourcing the code into a library-project i get the following > exception: > > System.ArgumentException: Set Method not found for 'Standardwert' The property has been removed by the linker. It doesn't exist. > Under Release (with linking sdk

Re: [mono-android] how to enable tds protcol in sqlserver

2013-10-11 Thread Jonathan Pryor
On Oct 10, 2013, at 2:47 AM, kamal wrote: > explain me how to enable tds protocol in sqlserver .give the tutorail or some Some variation on these steps should allow Mono's System.Data.SqlClient to connect to SQL Server. http://www.jprl.com/Blog/archive/development/mono/2009/May-14.html

Re: [mono-android] Reusing UI code in class libraries

2013-10-08 Thread Jonathan Pryor
On Oct 7, 2013, at 12:07 PM, andyjohnson0 wrote: > However, they reference resources (mainly layouts and strings) and resources > in class libraries are not (yet?) supported. Android Resources within Class Libraries have been supported since Mono for Android 4.4: http://docs.xamarin.c

Re: [mono-android] Binding libraries without including the jar file.

2013-10-01 Thread Jonathan Pryor
On Oct 1, 2013, at 2:48 AM, Jared Kells wrote: > I needed to use the android-support-v7-appcompat library so I created my own > bindings for it and the google play services library as I needed to link > against Rev18 of the V4 support library not the one bundled with Xamarin > Android. > My bi

Re: [mono-android] System.Core different for Xamarin.Android and Xamarin.iOS

2013-09-30 Thread Jonathan Pryor
On Sep 30, 2013, at 8:00 PM, Narayan Sainaney wrote: > I have Xamarin.Android (4.8.01013) and Xamarin.iOS (1.4.2) and we have > written a class on Android that inherits from > > System.Linq.Expressions.ExpressionVisitor in System.Core.dll > > Unfortunately, the method signature for overriding

Re: [mono-android] Binding FileChooser java Library project to xamarin android

2013-09-30 Thread Jonathan Pryor
On Sep 27, 2013, at 12:36 AM, venkatesh wrote: > Thanks for your wonderful support. Thank you for providing aFileChooser.rar; that makes things significantly easier... Please see http://www.jprl.com/tmp/Scratch.FileChooser.zip > *Error1* The best overloaded method match for > Andr

Re: [mono-android] System.IO / Java.IO Reference Inconsistencies

2013-09-30 Thread Jonathan Pryor
On Sep 30, 2013, at 1:01 PM, Samus Arin wrote: > When a (java) OutputStreamWriter is instantiated with a (java) > FileOutputStream ... > cannot convert from 'Java.IO.FileOutputStream' to 'System.IO.Stream' > > Even though I'm using absolute class names, it seems that the compiler is > still c

Re: [mono-android] Java .class operator support in JNI/JNIEnv ?

2013-09-27 Thread Jonathan Pryor
On Sep 27, 2013, at 4:56 PM, Samus Arin wrote: > After all this work, the property debug.mono.extra doesn't even exist, Why are you checking for the debug.mono.extra property? It's cleared by the debugger as part of startup; even if you did see it as a non-empty string, it wouldn't remain non-e

Re: [mono-android] Java .class operator support in JNI/JNIEnv ?

2013-09-27 Thread Jonathan Pryor
On Sep 27, 2013, at 12:33 PM, Samus Arin wrote: > Using JNI/JNIEnv, is it possible to execute the second statement (.class > operator) ? The `.class` operator is equivalent to the C# `typeof` operator. Depending on what you need to do with it, you can either use typeof(T) directly, or you can

Re: [mono-android] Why "Seppuku" ?

2013-09-27 Thread Jonathan Pryor
On Sep 27, 2013, at 11:58 AM, Samus Arin wrote: > I always see a logcat entry for this during process startup, and was > wondering why it is named as such. mono.android.Seppuku is a broadcast receiver which calls java.lang.Runtime.exit(); you can view obj\Debug\android\src\mono\android\Seppuku

Re: [mono-android] Binding FileChooser java Library project to xamarin android

2013-09-26 Thread Jonathan Pryor
On Sep 26, 2013, at 4:36 AM, venkatesh wrote: > I have done the steps given by you . > > 2.Add a new partial class to my binding solution as per your suggestions > > // Add a new class to your solution: > namespace Com.Ipaulpro.Afilechooser { > partial class FileListFragment { > publi

Re: [mono-android] Binding FileChooser java Library project to xamarin android

2013-09-25 Thread Jonathan Pryor
On Sep 25, 2013, at 3:07 AM, venkatesh wrote: > I am binding filechooser library project to xamarin android . > > 1) filechooser.jar from eclipse build > 2) Created a new Java Bindings Library project > 3) Copied the generated filechooser.jar into the Jar directory and set the > Build Action to

Re: [mono-android] Add .dlls assembly to the gac os OSX

2013-09-19 Thread Jonathan Pryor
On Sep 18, 2013, at 9:42 AM, Francesco Colombo wrote: > I've got a bunch of .dlls that I need to reference on severals projects in > Xamarin.Android. There is a main assembly which depends from other > assemblies. I think a good way to achive this is to add ALL those assemblies > into the GAC.

Re: [mono-android] Generic Binder object from external jar

2013-09-12 Thread Jonathan Pryor
On Sep 12, 2013, at 5:59 AM, "Breyer, Christian" wrote: > I’m including an external JAR that exports a Service and a generic Binder > class called LocalBinder. The sample code on how to work with the JAR > looks like this: > > public void onServiceConnected(ComponentName className, IBi

Re: [mono-android] Monodroid Java library

2013-09-02 Thread Jonathan Pryor
On Sep 2, 2013, at 7:40 AM, mihaivader wrote: > This also happens in the Monodroid sample projects from github. Any ideas ? Which sample? Thanks, - Jon ___ Monodroid mailing list Monodroid@lists.ximian.com UNSUBSCRIBE INFORMATION: http://lists.ximia

Re: [mono-android] Since 4.8.0/1 SIGSEGV on accessing IEditable from ITextWatcher's AfterTextChange

2013-08-26 Thread Jonathan Pryor
On Aug 17, 2013, at 5:19 PM, JLee wrote: > Jonathan Pryor-2 wrote >> 1. I revert the optimization. <...> >> 2. We document this somewhere, and say "Don't Do That" <...> > > What's about: > 1. revent the "optimization" until &

Re: [mono-android] LREF overflow setting the Text property of a TextView

2013-05-30 Thread Jonathan Pryor
On May 30, 2013, at 11:50 AM, Daniele Salvatore Albano wrote: > i'm experiencing a VERY strange bug: after a lot of tests i've founded the > source of my problem and it appers to be a stupid line of code that i use to > update a "clock" on the main activity. > > dateTimeTextView.Text = DateTim

Re: [mono-android] IOMap on Mono For Android

2013-05-29 Thread Jonathan Pryor
On May 29, 2013, at 3:22 AM, Mohammad Ali Rashidi wrote: > my vs2012 has errors > how I Can resove this problem :( Does %ANDROID_SDK_PATH%\platform-tools\adb.exe exist? Is your IDE properly configured? In Visual Studio: * Click Tools > Options... * In the left-hand tree, select Xamarin > Andro

Re: [mono-android] IOMap on Mono For Android

2013-05-24 Thread Jonathan Pryor
On May 24, 2013, at 6:09 AM, Daveoc64 wrote: > Is it possible to use the IOMap environment variable on Mono for Android? Maybe? I'm not sure if we compile that in or not... > I'm not sure how (or if) Environment Variables can be set for an application > in MFA, or whether the specific option ca

Re: [mono-android] Time out on async task with the 4.6 release

2013-05-20 Thread Jonathan Pryor
On May 20, 2013, at 8:19 AM, Paul Johnson wrote: > Using the current stable version of monodroid, is there a way to add a > timeout to an async task. Which Task? Android.OS.AsyncTask or System.Threading.Tasks.Task? For TPL, this might be handy: http://blogs.msdn.com/b/pfxteam/archive/2

Re: [mono-android] Slow Build- und Packaging-Process & few other things after update

2013-05-17 Thread Jonathan Pryor
On May 17, 2013, at 12:21 PM, JLee wrote: > Is that ok? That'll be fine. We are also investigating the email sending on our end, but this is very perplexing. - Jon ___ Monodroid mailing list Monodroid@lists.ximian.com UNSUBSCRIBE INFORMATION: http

Re: [mono-android] Slow Build- und Packaging-Process & few other things after update

2013-05-17 Thread Jonathan Pryor
On May 17, 2013, at 11:18 AM, JLee wrote: > I have spoken to our sys-admin and he told me, no e-mails from xamarin has > passed our mail-gateway since our last correspondence respectively there are > no mails in the spam-filter (he has checked also). Wat. Xamarin uses Google Apps for Business,

Re: [mono-android] Missing icon preventing deploy to Play Store

2013-05-17 Thread Jonathan Pryor
On May 17, 2013, at 10:55 AM, andyjohnson0 wrote: > I am trying to upload an apk to the play store, and this is failing with the > message "Upload failed You need to add an icon to your APK.". Please see the Specify The Application Icon section at: http://docs.xamarin.com/guides/androi

Re: [mono-android] Mono.Data.Sqlite "Database disk image is malformed" error

2013-05-17 Thread Jonathan Pryor
On May 14, 2013, at 5:23 PM, Andrew Sinclair wrote: > The app data layer has been running on the platform for two years and has > been very reliable. Does your application have armeabi-v7a support? (See Project Properties > Supported architectures.) Two years ago the default CPU architecture f

Re: [mono-android] Android GL preserve question

2013-05-16 Thread Jonathan Pryor
On May 14, 2013, at 9:13 AM, Francesco Colombo wrote: > Is this method GLView.setPreserveEGLContextOnPause available on > Xamarin.Android? Yes, it's available as the GLSurfaceView.PreserveEGLContextOnPause property: http://androidapi.xamarin.com/?link=P%3aAndroid.Opengl.GLSurfaceView

Re: [mono-android] Slow Build- und Packaging-Process & few other things after update

2013-05-15 Thread Jonathan Pryor
On May 15, 2013, at 4:47 PM, JLee wrote: > But since the weekend befor last I have heard nothing from them. I contacted > them several times to get at least a short feedback about the actual state of > investigationnothing. Do you have a spam filter or something? I've sent you 3 messages si

Re: [mono-android] SlidingDrawer issue

2013-05-11 Thread Jonathan Pryor
On May 6, 2013, at 7:42 PM, Paul Johnson wrote: > I've ported the code at > http://androidbite.blogspot.in/2012/10/android-slidingdrawer-example.html (it > was simple enough) and have come up with this > > using System; > > using Android.App; > using Android.Content; > using Android.Runtime; >

Re: [mono-android] Camera get photo sample

2013-05-11 Thread Jonathan Pryor
On May 7, 2013, at 9:02 AM, Tom Opgenorth wrote: > I can confirm that the sample does work on the Galaxy Nexus, so this is > probably a hardware specific thing While that may be true, it would likely be a good idea to improve the sample to do this automatically, so that everyone doesn't need to

Re: [mono-android] Deploy to device problem

2013-05-11 Thread Jonathan Pryor
On May 8, 2013, at 10:49 AM, Paul Johnson wrote: > Everything builds, but the deploy fails with > > Deployment failed because of an internal error: Unexpected install output: > pkg: /data/local/tmp/Origin.Origin-Signed.apk > Failure [INSTALL_PARSE_FAILED_MANIFEST_MALFORMED] > > My manifest f

Re: [mono-android] PutIntArrayListExtra Q

2013-05-05 Thread Jonathan Pryor
On May 5, 2013, at 7:08 PM, Paul Johnson wrote: > I have a List object that I need to pass to a new activity. Use Intent.PutExtra(string, int[]) with List.ToArray(). - Jon ___ Monodroid mailing list Monodroid@lists.ximian.com UNSUBSCRIBE INFORMATION

Re: [mono-android] "Take a Picture and Save Using Camera App" example fails with Java.Lang.OutOfMemoryError

2013-05-01 Thread Jonathan Pryor
On May 1, 2013, at 10:04 AM, Igor Velikorossov wrote: > I've read the "Take a Picture and Save Using Camera App" example and > downloaded provided sample > (http://docs.xamarin.com/recipes/android/other_ux/camera_intent/take_a_picture_and_save_using_camera_app). Thank you for mentioning this. W

Re: [mono-android] Slow Build- und Packaging-Process & few other things after update

2013-04-29 Thread Jonathan Pryor
On Apr 29, 2013, at 6:09 PM, JLee wrote: > are you kidding me? > > i'm the same person who's answering at > https://bugzilla.xamarin.com/show_bug.cgi?id=10840. > Username on both spots is JLee, is it that difficult? I generally ignore usernames in everything except IRC. > I already provided dia

Re: [mono-android] deployment error

2013-04-29 Thread Jonathan Pryor
On Apr 27, 2013, at 4:49 AM, krish wrote: > it started deploying and at the time of installing mono shared > runtime(armeabi-1365905400)i was got error that > > Key part of the dialog box: AdbEx

Re: [mono-android] Slow Build- und Packaging-Process & few other things after update

2013-04-29 Thread Jonathan Pryor
On Apr 27, 2013, at 9:27 AM, JLee wrote: > I installad 4.6.4, wasn't running in Trial Mode (logged in successfully in my > account, workstation successfully registerd in my account) and still had this > problem (on two different machines). Odd; can you provide diagnostic build output so I can d

Re: [mono-android] Binary fiile in Asset folder

2013-04-29 Thread Jonathan Pryor
On Apr 29, 2013, at 8:50 AM, Francesco Colombo wrote: > your solution seems to work fine! Now I can read my binary files inside the > apk directly. I didn't knew but, Android when installs applications, do not > uncompress the apk file. Do you think there is any performance loss between > read

Re: [mono-android] Binary fiile in Asset folder

2013-04-28 Thread Jonathan Pryor
On Apr 28, 2013, at 11:43 AM, Francesco Colombo wrote: > What I meant was if there were any other way to read assets from the Assets > folder bypassing the AssetsManager. That should be possible. Assets are stored in the `.apk`, so you just need to bundle a .zip parser in your app (e.g. Ionic

Re: [mono-android] Binary fiile in Asset folder

2013-04-28 Thread Jonathan Pryor
On Apr 28, 2013, at 6:45 AM, Francesco Colombo wrote: > I've found this. > > https://android-review.googlesource.com/#/c/51757/ > > Is this somehow fixable in Xamarin.Android? That's a core Android bug. You can work around it in Xamarin.Android (by not compressing, or using another mechanism

Re: [mono-android] Slow Build- und Packaging-Process & few other things after update

2013-04-26 Thread Jonathan Pryor
On Apr 19, 2013, at 9:33 AM, JLee wrote: > Are you still investigating this problem? We're investing several causes of slow builds and deployments. There's #10840, which should be fixed in 4.6.4 UNLESS you're running Trial mode, which is #11918. There's a debugger connect problem, which is #11

Re: [mono-android] Slow Build- und Packaging-Process & few other things after update

2013-04-26 Thread Jonathan Pryor
On Apr 19, 2013, at 9:49 AM, JLee wrote: > this message I get when I try to install 4.7.4 again: > > > You need to uninstall other products which are based on the old installer shell e.g. Xamarin.iOS. S

Re: [mono-android] Mono_UnhandledException in emulator

2013-04-26 Thread Jonathan Pryor
TL;DR: Please use Adapters whenever you need to show lists of data: http://docs.xamarin.com/guides/android/user_interface/working_with_listviews_and_adapters Adapters reduce GREF counts by ensuring that you only have GREFs for _visible_ items, not for _every_ item in a list. On Apr 19,

Re: [mono-android] Binary fiile in Asset folder

2013-04-26 Thread Jonathan Pryor
On Apr 26, 2013, at 10:32 AM, Francesco Colombo wrote: > @Jon: Is there any workaround to test "uncompressed" assets? The workaround is listed in the bug I mentioned in this thread: WORKAROUND: hand-edit the .csproj and add a within the first . is a semicolon-separated list

Re: [mono-android] Generate BC code

2013-04-26 Thread Jonathan Pryor
On Apr 26, 2013, at 8:54 AM, antoniolopes wrote: > Can anyone point me on how to generate bc code using monoandroid sdk? Unfortunately we don't have any "baked in" support for RenderScript. You will need to "fake it" yourself e.g. via pre-build steps which run the underlying RenderScript tools

Re: [mono-android] SIGSEGV on global::Java.Lang.Object.GetObject<>

2013-04-25 Thread Jonathan Pryor
This thread has moved to the forums: http://forums.xamarin.com/discussion/3473/sigsegv-on-globaljava-lang-object-getobject - Jon On Apr 16, 2013, at 11:34 PM, baramuse wrote: > Hi, > > I'm struggling with using a third party JNI library. > I've managed to build the BindingLibrary pr

Re: [mono-android] HttpWebRequest freezing when turning off screen

2013-04-25 Thread Jonathan Pryor
On Apr 22, 2013, at 8:52 AM, Stephan Steiner wrote: > I'm wondering - is there any setting that I should use to ensure that the > phones will keep the Wifi active while I have an ongoing HttpWebRequest? http://stackoverflow.com/questions/3871824/how-do-i-keep-wifi-from-disconnecting-whe

Re: [mono-android] error occuring after updating my android version in vs2010 while building the previous projects

2013-04-25 Thread Jonathan Pryor
On Apr 25, 2013, at 9:03 AM, krish wrote: > Error 1 Unexpected error - Please fill a bug report at > http://bugzilla.xamarin.com. Reason: System.IO.FileNotFoundException: Could > not load assembly 'System.DirectoryServices, Version=4.0.0.0, > Culture=neutral, PublicKeyToken=b03f5f7f11d50a

Re: [mono-android] Debugging Nexus 10 reboots while app open

2013-04-25 Thread Jonathan Pryor
On Apr 25, 2013, at 10:30 AM, George Banfill (Linknode Ltd) wrote: > F/libc( 393): Fatal signal 4 (SIGILL) at 0x70da0d10 (code=1), thread 407 > (SensorService) > I/DEBUG ( 125): *** *** *** *** *** *** *** *** *** *** *** *** *** *** > *** *** > I/DEBUG ( 125): Build fingerprint: >

Re: [mono-android] Internal Storage file not found

2013-04-24 Thread Jonathan Pryor
On Apr 23, 2013, at 2:29 PM, dstilwell wrote: > However if I stop the app and then restart it, I get a File Not Found > exception thrown and nothing returned from the read function. How are you stopping the app? Are you sure that WriteID() has finished? For that matter, how do you know that the

Re: [mono-android] deployment problem::my android device (tab) is not enabling in select device window

2013-04-24 Thread Jonathan Pryor
What version of Xamarin.Android are you running? Xamarin.Android 4.6 introduced the free Starter edition which allows device deployment, but only from Xamarin Studio. You're within Visual Studio, with an "Evaluation version" message, which suggests you're using Mono for Android 4.4 or earlier.

Re: [mono-android] Binary fiile in Asset folder

2013-04-24 Thread Jonathan Pryor
On Apr 24, 2013, at 1:39 PM, Francesco Colombo wrote: > Xamarin Studio! Thank you. This has been filed as: https://bugzilla.xamarin.com/show_bug.cgi?id=11943 - Jon ___ Monodroid mailing list Monodroid@lists.ximian.com UNSUBSCRIBE INFORMATION: http

Re: [mono-android] Binary fiile in Asset folder

2013-04-24 Thread Jonathan Pryor
On Apr 24, 2013, at 1:27 PM, Francesco Colombo wrote: > I whish also try the "uncompressed" way but I'm unable to achieve this. If I > open the project properties and insert some values inside the textbox which > expects file types which will be "uncompressed", values are not saved! Odd; which

Re: [mono-android] Binary fiile in Asset folder

2013-04-24 Thread Jonathan Pryor
On Apr 24, 2013, at 1:02 PM, Francesco Colombo wrote: > I'm having a strange issue in android 4.0 wiht Sam G2. I'm trying to read > some binary files, which are ~2mb, from the Asset folder. Some of these files > are read without any problems, some others make the app crash with the error: > "E

Re: [mono-android] how to deploy mono for android app(.apk file) to android tablet

2013-04-17 Thread Jonathan Pryor
On Apr 17, 2013, at 9:21 AM, krish wrote: > hi, >m suffering from deployment problem...i tried one thing...i copied the > .apk signed > file(E:\MonoAddModifyDeleteView\MonoAddModifyDeleteView\bin\Debug) to sd card > of tablet and installed it ...it is installed on the tablet but giving erro

Re: [mono-android] Linker Error in 4.7.4 beta when Referring to Mono.Android.Support.V4

2013-04-17 Thread Jonathan Pryor
On Apr 17, 2013, at 10:57 AM, Joshua Barker wrote: > I think the bug that was fixed in 4.6.3 is back in 4.7.4 beta. 4.6.x branched from 4.7 long ago; 4.7 never got that fix in the first place. ;-) We'll be fixing that error in a different way for 4.7; the 4.6 fix was "don't do that", i.e. "don'

Re: [mono-android] Slow Build- und Packaging-Process & few other things after update

2013-04-15 Thread Jonathan Pryor
On Apr 15, 2013, at 7:41 AM, JLee wrote: > Installed 4.6.4 -> no improvements. > Everything exactly the same. Are you on the Trial by any chance? - Jon ___ Monodroid mailing list Monodroid@lists.ximian.com UNSUBSCRIBE INFORMATION: http://lists.ximia

Re: [mono-android] Slow Build- und Packaging-Process & few other things after update

2013-04-13 Thread Jonathan Pryor
On Apr 13, 2013, at 6:15 PM, JLee wrote: > unfortunately, the workaround 10840#c6 doesn't work for me. When will the > next Mono-Release be published? 4.6.3 was pushed to stable today. With luck, 4.6.4 will be pushed tomorrow. (Please let's not need a 4.6.5 anytime soon...) > fyi my debug-sett

Re: [mono-android] Slow Build- und Packaging-Process & few other things after update

2013-04-13 Thread Jonathan Pryor
On Apr 13, 2013, at 11:10 AM, JLee wrote: > Yesterday i installed 4.6.02001. > > Now i'm facing long build- & packaging-times. Build takes 60+ sec. / > packaging (incl. copy to device) 70+ sec (in debug-mode).I never stopped > buildtime on 4.2.7but it is a huge difference. Bugs were fixed,

Re: [mono-android] NoClassDefFoundError on new classFromNativeLibrary(AppContext)

2013-04-12 Thread Jonathan Pryor
On Apr 12, 2013, at 5:47 PM, Chas Xu wrote: > Please see the logcat: > > D/AndroidRuntime( 9741): Shutting down VM > W/dalvikvm( 9741): threadid=1: thread exiting with uncaught exception > (group=0x40a13300) > E/AndroidRuntime( 9741): FATAL EXCEPTION: main > E/AndroidRuntime( 9741): java.lang.Nu

Re: [mono-android] NoClassDefFoundError on new classFromNativeLibrary(AppContext)

2013-04-12 Thread Jonathan Pryor
On Apr 12, 2013, at 9:50 AM, Chas Xu wrote: > However the app just crashes after the main activity set content view. What's the crash? In your Java Bindings Library project, what's the Build action for your .jar? If it's EmbeddedJar, it will be included into the binding .dll and you won't nee

Re: [mono-android] Onclick event handler on button contained in a listview item

2013-04-12 Thread Jonathan Pryor
On Apr 11, 2013, at 2:44 AM, mp3killa wrote: > Hi Jonathan, > > Just checking in on this one, is there still a plan to get this one going > (Attribute OnClick)? That was fixed in the 4.2 release with the [Export] custom attribute. Example: https://github.com/xamarin/monodroid-samples

Re: [mono-android] ActionBarSherlock styling

2013-04-04 Thread Jonathan Pryor
On Apr 4, 2013, at 11:02 AM, Spencer wrote: > I'm trying to restyle the default ActionBarSherlock theme and getting the > dreaded "aapt.exe exited with code 1. (MSB6006)" error. Please enable Diagnostic build output, clean, and rebuild your app: http://docs.xamarin.com/guides/android/d

Re: [mono-android] handling webservices with self-signed certificates

2013-04-03 Thread Jonathan Pryor
On Apr 3, 2013, at 12:48 PM, Stephan Steiner wrote: > I came up with this (see end of mail). It works if I run it with > Microsoft.Net, and it throws a pretty similar error (see very end of mail) > running it with Mono, thus confirming that the problem lies indeed with > Mono's handling of the

Re: [mono-android] handling webservices with self-signed certificates

2013-04-03 Thread Jonathan Pryor
On Apr 3, 2013, at 1:06 AM, Stephan Steiner wrote: > Why do you create your own Application on your code? To ensure that ServicePointManager.ServerCertificateValidationCallback is only set once per process. Otherwise it'll be appended to every time that Activity launches; launch the Activity 5

Re: [mono-android] Minimum Android to target option

2013-04-02 Thread Jonathan Pryor
On Apr 2, 2013, at 1:56 PM, Jeremy A. Kolb - ARA/NED wrote: > I guess my question is: what’s the best way to achieve my goal and what > exactly does “Minimum Android to target option” do? You're using Visual Studio, correct? Visual Studio doesn't have any way to set the android:minSdkVersion at

Re: [mono-android] handling webservices with self-signed certificates

2013-04-02 Thread Jonathan Pryor
On Apr 2, 2013, at 7:04 PM, Stephan Steiner wrote: > I just sent this to Bryan - > > Try https://www.google.com/ > > Still bombs out. Still unable to reproduce. Is this a Debug or a Release app? If a Release app, perhaps you need to enable the INTERNET permission? Is this on hardware or the e

Re: [mono-android] handling webservices with self-signed certificates

2013-04-02 Thread Jonathan Pryor
On Apr 2, 2013, at 12:28 PM, Stephan Steiner wrote: > Ran into this issue this afternoon: Create new android app with the following > code I am unable to reproduce. Perhaps my server with unsigned cert differs somehow from yours? (I'm unable to use dragonslair.net, as it's inaccessible to me.)

Re: [mono-android] Memory Leak With Simple App

2013-04-02 Thread Jonathan Pryor
On Apr 1, 2013, at 7:51 PM, Natanael wrote: > I have a simple app that calls a method in the click event of the button. > > As I'm clicking the button the use of memory is increasing and it is not > released. How are you tracking memory use? Which memory is constantly increasing and isn't rele

Re: [mono-android] Memory Leak With Simple App

2013-04-02 Thread Jonathan Pryor
On Apr 2, 2013, at 10:14 AM, Paul Johnson wrote: > Without seeing some code He provided code. The problem is that he provided it via the @#%$ nabble.com web interface, which has this Q#$@#$% tendency to STRIP all attachments/etc. before sending it to the list. TL;DR: you need to visit here to

Re: [mono-android] Earlier versions

2013-03-27 Thread Jonathan Pryor
On Mar 27, 2013, at 10:16 AM, Paul Johnson wrote: > There seems to be a problem with the latest alpha (4.7.2) and so I need to > rewind to 4.7.1 - there used to be a link on the Xamarin website to earlier > version, but it's vanished. The link to download earlier versions is for stable releases

Re: [mono-android] Compiling to native code (Xamarin.Android 4.7)

2013-03-24 Thread Jonathan Pryor
On Mar 24, 2013, at 9:07 PM, Paul Johnson wrote: > RIM has released a piece of software that allows the recompilation of android > native apps somehow. Docs? :-) How's it work? Is it recompilation of source? Or is there a way to modify the binaries? > The latest alpha of Xamarin.Android allow

Re: [mono-android] AutoCompleteCustomAdapter problem

2013-03-21 Thread Jonathan Pryor
On Mar 14, 2013, at 6:00 AM, laurar81 wrote: >public class AutoCompleteCustomAdapter : ArrayAdapter, IFilterable >{ >LayoutInflater inflater; >Filter filter; >public string[] AllItems; >public string[] MatchItems; Don't inherit ArrayAdapter then override e.

Re: [mono-android] cannot find symbol symbol : class __FastDevLauncher location: package mono.android

2013-03-21 Thread Jonathan Pryor
On Mar 13, 2013, at 2:42 PM, Nausis wrote: > I'm trying to do this > http://www.motzwrit.es/post/17785659512/how-to-use-theme-holo-in-mono-for-android > but when i add the android:targetSdkVersion="14"/> on AndroidManifest.xml i have this error: Unfortunately your image was removed, so all I ha

Re: [mono-android] Missing Android.Resource.Styleable

2013-03-13 Thread Jonathan Pryor
On Mar 13, 2013, at 12:18 PM, Dimitar Dobrev wrote: > OK, this makes sense. So, is it then some kind of a bug in the Android > SDK? I don't see a reason for the android.jar on the device (or on the > emulator in my case) to be different. This is not a bug in the Android SDK. If you read the

Re: [mono-android] Missing Android.Resource.Styleable

2013-03-13 Thread Jonathan Pryor
On Mar 13, 2013, at 4:19 AM, Dimitar Dobrev wrote: > Besides, I've already said that manual binding through JNI works (I've > exposed just 2 fields because I only need them for now). Your original question was regarding why it wasn't present as global::Android.Resource.Styleable. The answer is

Re: [mono-android] Missing Android.Resource.Styleable

2013-03-12 Thread Jonathan Pryor
On Mar 12, 2013, at 5:31 PM, Dimitar Dobrev wrote: > I have no idea either but they do use it. Besides, manually binding the > class works so it's real, so to speak. They do? I haven't fully searched that that file, but the few occurrences I hit (line 162, line 164) are for com.android.inte

Re: [mono-android] Missing Android.Resource.Styleable

2013-03-12 Thread Jonathan Pryor
On Mar 12, 2013, at 3:49 PM, Dimitar Dobrev wrote: > Yes, I'm sure, I want the Styleable class. I have no idea where that type comes from. :-( $ jar tf $ANDROID_SDK_PATH/platforms/android-17/android.jar | grep 'R\$sty' android/R$style.class There is no android.R.styleable t

Re: [mono-android] Missing Android.Resource.Styleable

2013-03-12 Thread Jonathan Pryor
On Mar 12, 2013, at 10:17 AM, Dimitar Dobrev wrote: > I use Mono for Android 4.4.55 and I need to use the > Android.Resource.Styleable class. You sure you don't want the Resource.Style class? http://androidapi.xamarin.com/?link=T%3aAndroid.Resource%2bStyle - Jon _

Re: [mono-android] Error "java" existed with code 1

2013-03-08 Thread Jonathan Pryor
On Mar 8, 2013, at 11:48 AM, Fernando Cordero wrote: > Thanks for the input, I already did, for the MSBuild, i have the output to > diagnostic but that's all i get: If you have diagnostic output, you should have LOTS more output than that. Look through the output for "javac"; you want to find

Re: [mono-android] Error "java" existed with code 1

2013-03-08 Thread Jonathan Pryor
On Mar 8, 2013, at 12:02 AM, vergatario wrote: > Not sure if you have seen this error before, but after clean and try to > rebuild using VS 2012. I get this. Any ideas, My Android target is 2.2 > > Error 1 "java" exited with code 1. C:\Program Files > (x86)\MSBuild\Xamarin\Android\Xamarin.Andro

Re: [mono-android] Visual Studio 2010 - Mono For Android Error when login to computer as a different user

2013-03-04 Thread Jonathan Pryor
On Mar 4, 2013, at 1:30 AM, blorecrafter wrote: > Hi Jon > Can there be any alternative solution for now. Like can i uninstall M4A in > one login and install under another login. Please help... Are you using different Xamarin logins for each of your accounts? I don't think that this is a scenari

Re: [mono-android] how to ouput chinese use Console.out.WriteLine()

2013-03-04 Thread Jonathan Pryor
On Mar 3, 2013, at 10:09 PM, xin Lee wrote: > I am try to use System.Console.Out.WriteLine() to output chinese. > > String s = "中文字"; //this is some chinese > System.Console.Out.WriteLine(s); > > But I ony see ??. This appears to be an IDE bug. If you look at `adb logcat`[0], things app

Re: [mono-android] the version of 4.4.54

2013-03-01 Thread Jonathan Pryor
On Feb 24, 2013, at 11:57 AM, qinyi <120742...@qq.com> wrote: > how can i download this version?please tell me the website! not 4.4.55 version What's wrong with the 4.4.55 version? The difference between them is that 4.4.55 will more reliably create an MfaActivation.dat file when activation fail

Re: [mono-android] Dynamic assembly loading issues

2013-03-01 Thread Jonathan Pryor
On Feb 27, 2013, at 12:10 AM, johnbowick wrote: > I have to compile application against correct Microsoft.Data.SqlXml.dll > assembly. Bundle the assembly with your project so that everyone uses the same version. Furthermore, you probably should be building this from source so that it uses the

Re: [mono-android] Android.Text.Format.DateFormat.GetDateFormat is missing

2013-03-01 Thread Jonathan Pryor
On Feb 27, 2013, at 12:26 PM, kruzo wrote: > In Android we have android.text.format.dateFormat.getDateFormat and > getTimeFormat. But I can't find these classes in Monodroid. Unfortunately they are not bound at this time. We are looking into binding them in a future release. In the meantime, y

  1   2   3   4   5   6   7   8   9   10   >