From 4c7667cb6180e9996b30aa8b55d675f7fcace30c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20Laferri=C3=A8re?= Date: Thu, 23 Jun 2016 12:03:34 -0400 Subject: [PATCH] app.nit: add metadata to http_request example for mobile versions MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Laferrière --- lib/app/examples/http_request_example.nit | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/app/examples/http_request_example.nit b/lib/app/examples/http_request_example.nit index 65c3db8..a280da2 100644 --- a/lib/app/examples/http_request_example.nit +++ b/lib/app/examples/http_request_example.nit @@ -13,10 +13,15 @@ # limitations under the License. # Example for the `app::http_request` main service `AsyncHttpRequest` -module http_request_example +module http_request_example is + app_name "app.nit HTTP" + app_namespace "org.nitlanguage.http_example" + android_api_target 15 +end import app::ui import app::http_request +import android::aware # for android_api_target # Simple asynchronous HTTP request to http://example.com/ displaying feedback to the window class MyHttpRequest -- 1.7.9.5