diff options
author | Parménides GV <parmegv@sdf.org> | 2013-02-05 20:46:33 +0100 |
---|---|---|
committer | Parménides GV <parmegv@sdf.org> | 2013-02-05 20:46:33 +0100 |
commit | 1d5f1c320ee67cfadd62aeef056a043bee75096d (patch) | |
tree | d92f986b1579e6a2b365e774115f39c658d74fca /src/se/leap/leapclient/Dashboard.java | |
parent | 45b86cd7c8922cfd03a7f056941852273c2d122a (diff) |
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.
Diffstat (limited to 'src/se/leap/leapclient/Dashboard.java')
-rw-r--r-- | src/se/leap/leapclient/Dashboard.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/se/leap/leapclient/Dashboard.java b/src/se/leap/leapclient/Dashboard.java index 7bb71c1e..02bc704c 100644 --- a/src/se/leap/leapclient/Dashboard.java +++ b/src/se/leap/leapclient/Dashboard.java @@ -37,9 +37,10 @@ public class Dashboard extends Activity { preferences = getPreferences(MODE_PRIVATE); // FIXME We need to StartActivityForResult and move the rest to buildDashboard (called in "else" and onActivityResult) - if ( !preferences.contains("provider") ) + if ( !preferences.contains("provider") ) { startActivity(new Intent(this, ProviderListActivity.class)); - + } + // Get our provider provider = Provider.getInstance(preferences); |