routable-android
routable-android copied to clipboard
Routable, an in-app native URL router, for Android
There are only a few lines of code which use http-client's related APIs: `URLEncodedUtils` & `NameValuePair`. ``` java List query = URLEncodedUtils.parse(parsedUri, "utf-8"); for (NameValuePair pair : query) { routerParams.openParams.put(pair.getName(),...
Its possible to add extra bundles when i call a new Activity?
Can you this be turned to use for fragments or is the implementation exclusively for activities which it seems? nice lib btw.
NameValuePair and URLEncodedUtils are deprecated in API level 22.
It's a pity that we treat all parameter as `String` type. So I introduce type into key declaration, such as ``` map("users/:defaultIsStringValue/i:intValue/l:longValue/f:floatValue/d:doubleValue/s:stringValue", UserActivity.class) ``` In this situation, we can get...