From 12de321bdd1e6b19dba35b03771f550ce2ddd31c Mon Sep 17 00:00:00 2001 From: Sean Leonard Date: Wed, 30 Jan 2013 22:56:59 -0700 Subject: Switch the Launcher Activity, resolves #1526 --- AndroidManifest.xml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) (limited to 'AndroidManifest.xml') diff --git a/AndroidManifest.xml b/AndroidManifest.xml index b4df9219..7162576a 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -53,12 +53,6 @@ - - - - - - + + + + + + + + - + \ No newline at end of file -- cgit v1.2.3 From 92c32b0b96938009af55ed28920472f22a4614ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Parm=C3=A9nides=20GV?= Date: Thu, 31 Jan 2013 22:12:21 +0100 Subject: Problems with downloaded file, the emulator cannot find the file downloaded. Seen http://code.google.com/p/android/issues/detail?id=18462 and decided to look for another solution. First solution thought (and going to be the next test): HTTP Get request :) --- AndroidManifest.xml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'AndroidManifest.xml') diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 7162576a..438b6887 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -25,6 +25,7 @@ + @@ -150,6 +151,11 @@ + + + \ No newline at end of file -- cgit v1.2.3 From 7b9e22e765a1e5eda05ad121684e63c20ff5f049 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Parm=C3=A9nides=20GV?= Date: Fri, 1 Feb 2013 00:13:09 +0100 Subject: I have a handshake failing within an HTTP connection in order to get the eip-service.json file. provider.json downloads and parses itself OK to SharedPreferences. It also does not link OK to the Dashboard, I do not know how to do it properly and I'm so tired (eyes hurting). Beginning with security things :) Happy to have gotten around DownloadManager problem with a simple HTTP connection. --- AndroidManifest.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'AndroidManifest.xml') diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 438b6887..854a2972 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -70,7 +70,8 @@ - + + -- cgit v1.2.3 From 1d5f1c320ee67cfadd62aeef056a043bee75096d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Parm=C3=A9nides=20GV?= Date: Tue, 5 Feb 2013 20:46:33 +0100 Subject: Simplified certificates and urls: only 1 certificate, and no :443 port in eip. Downloads certificate and eip from web, and loads provider from assets. KeyStore not created with latest version of BouncyCastle. Looking forward to file a bug and look for a solution. --- AndroidManifest.xml | 3 +++ 1 file changed, 3 insertions(+) (limited to 'AndroidManifest.xml') diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 854a2972..48ccbda4 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -156,6 +156,9 @@ + + + -- cgit v1.2.3 From 6e0142a335eafe8a9b0e41b0e968038c0aeabd11 Mon Sep 17 00:00:00 2001 From: Sean Leonard Date: Thu, 7 Feb 2013 01:33:03 -0700 Subject: Refactor ProviderListActivity.class into ConfigurationWizard.class, Moves towards our wizard flow; Addresses #1497 #1500 --- AndroidManifest.xml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'AndroidManifest.xml') diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 48ccbda4..56ca7d44 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -152,13 +152,9 @@ - - - - + android:name="se.leap.leapclient.ConfigurationWizard" + android:label="@string/title_activity_configuration_wizard" > -- cgit v1.2.3 From 6c90e0043ec68254c15562fd12a707f5e45f47e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Parm=C3=A9nides=20GV?= Date: Tue, 11 Jun 2013 19:01:36 +0200 Subject: We are not using SD storage anymore. We were using it to save certificate and provider.json files from chosen provider, so that exporting them was easily done. We don't need that files, because if we wanted to export that files we would be able to recover them easily and updated. This fixes #2783 --- AndroidManifest.xml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'AndroidManifest.xml') diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 56ca7d44..68a1ef13 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -22,10 +22,7 @@ - - - @@ -158,4 +155,4 @@ - \ No newline at end of file + -- cgit v1.2.3 From 33338d43e0e83329a7c46807e096b8148e19aff7 Mon Sep 17 00:00:00 2001 From: Sean Leonard Date: Sun, 9 Jun 2013 04:09:03 -0600 Subject: Quite basic staring and stopping of VPN --- AndroidManifest.xml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'AndroidManifest.xml') diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 68a1ef13..17f044f8 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -153,6 +153,14 @@ android:name="se.leap.leapclient.ConfigurationWizard" android:label="@string/title_activity_configuration_wizard" > + + + + + + + + - + \ No newline at end of file -- cgit v1.2.3 From ebacbcad73f86b80c9bac17f737a764ef75647df Mon Sep 17 00:00:00 2001 From: Sean Leonard Date: Sun, 9 Jun 2013 04:41:21 -0600 Subject: Change the launcher name from "LEAP Dashboard" to "LEAP" --- AndroidManifest.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'AndroidManifest.xml') diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 17f044f8..95997475 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -143,7 +143,7 @@ - + -- cgit v1.2.3 From 58b96c50015aea4c46111f62a040b6a1a056ac0e Mon Sep 17 00:00:00 2001 From: Sean Leonard Date: Tue, 25 Jun 2013 08:14:26 -0600 Subject: Proper API level targeting: min 14, target 17 --- AndroidManifest.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'AndroidManifest.xml') diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 95997475..f514b365 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -27,8 +27,8 @@ + android:minSdkVersion="14" + android:targetSdkVersion="17" /> - \ No newline at end of file + -- cgit v1.2.3 From ef0a0f017244f331839375ed9ac66f06af09d9bc Mon Sep 17 00:00:00 2001 From: Sean Leonard Date: Thu, 18 Jul 2013 13:55:01 -0600 Subject: Bump build to 60 and version to 0.2.0 --- AndroidManifest.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'AndroidManifest.xml') diff --git a/AndroidManifest.xml b/AndroidManifest.xml index f514b365..9833032c 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -17,8 +17,8 @@ + android:versionCode="60" + android:versionName="0.2.0" > -- cgit v1.2.3