summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-02-13Clean up SameService.Kjetil Ørbekk
2012-02-13Remove unused code.Kjetil Ørbekk
2012-02-13Fix focus problem.Kjetil Ørbekk
2012-02-13Display discovered networks in user interface.Kjetil Ørbekk
2012-02-13Fix network notification.Kjetil Ørbekk
NetworkNotificationListener in SameService passes networks correctly to listening activity. Activity displays networks.
2012-02-13Make Android app behave.Kjetil Ørbekk
Doing things slightly more correctly.
2012-02-13Remove unused code.Kjetil Ørbekk
2012-02-13Use SameController for network discovery in Android app.Kjetil Ørbekk
2012-02-13Make Configuration.getInt() null safe.Kjetil Ørbekk
2012-02-13Use special broadcast in android program.Kjetil Ørbekk
2012-02-13Add SameService TODO.Kjetil Ørbekk
2012-02-13Move SameService.Kjetil Ørbekk
com.orbekk{.discovery =>}.SameService
2012-02-13Android Broadcaster implements BroadcastInterface.Kjetil Ørbekk
2012-02-13Fix broadcast code.Kjetil Ørbekk
– Send broadcast from SameController. – Correct usage of SO_REUSEADDR. – BroadcasterInterface for Android code.
2012-02-11Add README.Kjetil Ørbekk
2012-02-11Add same-java project.Kjetil Ørbekk
Splitting same into two projects may help Eclipse exclude dependencies and build apk correctly: – same will be renamed same-common and hold common dependencies. – same-java will be the pure java library and application. – same-android will hold android code. Currently, same-android excludes dependencies from same but Eclipse does not pick up on this.
2012-02-07Add COPYING.Kjetil Ørbekk
Same is licensed under the Apache License version 2.0.
2012-02-07Extend SameService.Kjetil Ørbekk
– Binding to SameService now possible. – Broadcast created for available networks.
2012-02-07Remove unneeded documentation.Kjetil Ørbekk
Remove documentation from Hello Android project.
2012-02-07Improve layout code.Kjetil Ørbekk
Descriptive ids in layout.
2012-02-07Don't clean on rebuild.Kjetil Ørbekk
2012-02-07Add simple build script.Kjetil Ørbekk
2012-02-07Add settings menu to Android app.Kjetil Ørbekk
– New main activity. – Options menu to go to Same settings.
2012-02-07Rename HelloAndroidActivity=>SameControllerActivity.Kjetil Ørbekk
2012-02-07Add jar-with-dependencies support in same project.Kjetil Ørbekk
– Use assembly:single to generate a jar file.
2012-02-07Improve StateServlet interface.Kjetil Ørbekk
2012-02-07Remove unused code.Kjetil Ørbekk
Remove old State.toString() method.
2012-02-07Fix warnings.Kjetil Ørbekk
– Remove unused imports. – Remove unused variables.
2012-02-07Use DiscoveryService in app.Kjetil Ørbekk
2012-02-07Add DiscoveryService.Kjetil Ørbekk
2012-02-07Configuration files with discovery service.Kjetil Ørbekk
2012-02-07Add interrupt() support to BroadcastListener.Kjetil Ørbekk
2012-02-06Support setting state in StateServlet.Kjetil Ørbekk
2012-02-06Show state in StateServlet.Kjetil Ørbekk
Support interacting with a Client.
2012-02-06Refactor: Rename classes.Kjetil Ørbekk
Rename Client and Master classes, because the classes contain more than just the service interfaces. – ClientServiceImpl => Client. – MasterServiceImpl => Master.
2012-02-06Fix same-android.Kjetil Ørbekk
– Use new Configuration class. – Enter MasterService url manually.
2012-02-06Remove unused (and invalid) imports.Kjetil Ørbekk
2012-02-06Add public constructor to Configuration.Kjetil Ørbekk
2012-02-06Support clients in generic App.Kjetil Ørbekk
2012-02-06Replace MasterApp with a generic App class.Kjetil Ørbekk
2012-02-06Deprecate SameInterface.Kjetil Ørbekk
2012-02-06Fix RpcServlet: Use POST requests.Kjetil Ørbekk
2012-02-06Fix failing tests.Kjetil Ørbekk
Tests were failing because of URL problems after refactoring.
2012-02-06Fix NullPointerException.Kjetil Ørbekk
– Set missing field in Master constructor.
2012-02-06Refactor URL handling in Client and Master.Kjetil Ørbekk
– Take URL as parameter to constructor.
2012-02-06Add a class that holds server information.Kjetil Ørbekk
– Provides access to the context and port, used in testing.
2012-02-06Add example configuration for clients.Kjetil Ørbekk
2012-02-06Get rid of UrlReceiver interface.Kjetil Ørbekk
2012-02-03Use Configuration in client as well.Kjetil Ørbekk
2012-02-03Remove old code from ClientApp.Kjetil Ørbekk