Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror

Comment Re:Maybe not a crisis (Score 1) 636

It is actually a little harder than this, since JAVA is statically compiled. You can't have a class referenced in code if it's not available in the JVM, even if that code branch is never executed. So this will not work: if (ANDROID_2_1) { BluetoothManager.doSomething(); } There are a few good tutorials for handling this, while avoiding reflection. They take advantage of JAVA's lazy loading of static classes. The official Android blog has a post here: http://android-developers.blogspot.com/2009/04/backward-compatibility-for-android.html and here is a great, detailed tutorial: http://devtcg.blogspot.com/2009/12/gracefully-supporting-multiple-android.html With that said, sdk 2.1 isn't terribly different than sdk 1.6, really. You can write most apps using 1.6, and should for now. Code modifications go through a lengthy deprecation period before being considered for removal. Should Google really feature-freeze a platform because a single phone got released?
Microsoft

MS Silverlight To Stream Obama Inauguration Events 589

Ilgaz writes in to let us know that we will have to install MS Silverlight 2 to watch the US President's inauguration online. Everyone running Mac PPC, Linux, and FreeBSD has been left out, as there are no working Silverlight 2-capable alternatives on these systems. Here is Microsoft's press release announcing the selection of Silverlight yesterday. Streaming of various events around the inauguration begins today at the Presidential Inaugural Committee site, which touts its "inclusive and accessible" coverage.

Slashdot Top Deals

Remember to say hello to your bank teller.

Working...