[mono-android] Android compatibility pack

2012-03-02 Thread Piotr Kryger
Hi, I would like to use fragments API in my app. The problem is, my app should also support Android 2.2/2.3. In java you can use Android Compatibility Pack to access fragments even on Android 1.6. In M4A , AFAIK, it won't be possible since there is no way to inherit java types defined in third par

Re: [mono-android] Android compatibility pack

2012-03-04 Thread Piotr Kryger
Thanks for the explanation. What is the EAT for compatibility pack bindings? Piotr W dniu 2 marca 2012 23:29 użytkownik Jonathan Pryor napisał: > On Mar 2, 2012, at 4:44 PM, Piotr Kryger wrote: > > In M4A , AFAIK, it won't be possible since there is no way to inherit > java

Re: [mono-android] Android compatibility pack

2012-03-07 Thread Piotr Kryger
Bump W dniu 5 marca 2012 07:52 użytkownik Piotr Kryger napisał: > Thanks for the explanation. > What is the EAT for compatibility pack bindings? > > Piotr > > W dniu 2 marca 2012 23:29 użytkownik Jonathan Pryor napisał: > > On Mar 2, 2012, at 4:44 PM, Piotr Kryger wrote:

[mono-android] Splash upon app restart

2012-04-02 Thread Piotr Kryger
Hi, Does anybody have an idea how to show splash screen on application restart? I know I can create splash screen on application startup as described in docs . But how to do it, when user presses home button and after some time re

Re: [mono-android] 4.2.1 issues

2012-05-17 Thread Piotr Kryger
I have the same reference issue... 2012/5/15 NebulaSleuth > > Jonathan Pryor-2 wrote > > > > On May 15, 2012, at 11:24 AM, NebulaSleuth wrote: > >> 4. NetworkInterface.GetAllNetworkInterfaces() seems to not function any > >> more. > > > > It's never worked: > > > > https://bugzilla.novell

[mono-android] Thread 0x0 may have been prematurely finalized

2012-08-07 Thread Piotr Kryger
Hi, I have problem with my app: it crashes randomly (but pretty frequently). Before crash the message: > Thread 0x0 may have been prematurely finalized Process 31914 terminated by signal (11) is always visible in adb log. I cant see any other useful information there. Im using M4A 4.2.4 and VS

Re: [mono-android] Thread 0x0 may have been prematurely finalized

2012-08-09 Thread Piotr Kryger
meabi. I added armeabi-v7a and now, when running on the device, error occurs less frequent but eventually it always pops up. Do you have any other suggestions? 2012/8/8 Jonathan Pryor > On Aug 7, 2012, at 10:39 AM, Piotr Kryger wrote: > > I have problem with my app: it crashes random

Re: [mono-android] Slow/poor performance

2011-05-14 Thread Piotr Kryger
I got the same error, when trying to setup splash screen in my project (though sample project from Brian worked fine). I found the problem was line setContentView(R.layout.splash) in SplashActivity.java - commenting this one made my project compile and deploy fine. As a workaround I replaced consta

[mono-android] Random exceptions while reading SSL stream

2011-11-17 Thread Piotr Kryger
Hi, Im trying to read binary data from ssl stream. Basically, I do this: Stream inner = ConnectToMyHttpsServerAndGetStream(); SslStream sslStream = new SslStream(inner, false, null, null); sslStream.AuthenticateAsClient(certificateServerName); BinaryReader reader = new BinaryReader(sslStream); //

Re: [mono-android] cant make package when referencing a .JAR lib.

2011-12-07 Thread Piotr Kryger
I have similar problem. I use acra-4.2.3.jar and java class which imports some stuff from this jar. Build action for jar as well as for java class are AndroidJavaSource. When I try to deploy I see following lines: > (SignAndroidPackage target) (1) -> > (_CompileJava target) -> MyJavaClass.java(4

Re: [mono-android] cant make package when referencing a .JAR lib.

2011-12-09 Thread Piotr Kryger
her .java or .jar, but maybe > it got busted. > > If that doesn't help, you can look at the command line VS or MD is using > to call javac and see if something is missing from it. > > Jonathan > > > > On 12/7/2011 6:36 AM, Piotr Kryger wrote: > >> I have

Re: [mono-android] Supported architectures? armeabi-v7a

2011-12-13 Thread Piotr Kryger
AFAIK you can build multiple APKs, one for each ABI you support, and publish them to Android Market. This way you can support multiple ABIs without size penalty. 2011/12/13 Jonathan Pryor > Either way, each libmonodroid.so is ~3MB in size, though this is > compressed in the .apk to about 1.2MB,

[mono-android] Packaging problem with 4.0.1

2011-12-18 Thread Piotr Kryger
Hi, I've just upgraded to 4.0.1 and now I'm unable to package app. Solution builds fine, but attempt to deploy ends with error: > C:\Program Files\Java\jdk1.6.0_25\bin\javac.exe -d > obj\Release-ARM\android\bin\classes -classpath "C:\Program Files\Reference > Assemblies\Microsoft\Framework\Mono

Re: [mono-android] Packaging problem with 4.0.1

2011-12-22 Thread Piotr Kryger
Filed as bug 2609 <http://bugzilla.xamarin.com/show_bug.cgi?id=2609> 2011/12/20 Jonathan Pryor > On Dec 19, 2011, at 2:56 AM, Piotr Kryger wrote: > > I've just upgraded to 4.0.1 and now I'm unable to package app. > > Solution builds fine, but attempt to deploy