1. HaTaX's Avatar
    Try browsing this page on your PB, might be easier to find the BAR files:

    Converted APKs - BBXTeam Wiki
    11-06-11 08:21 PM
  2. thoand's Avatar
    hm, after I klick on install I got an empty ok message an no app icon. apps I manualy sideloaded work without a problem. any idea?
    11-07-11 09:06 AM
  3. SlcCorrado's Avatar
    hm, after I klick on install I got an empty ok message an no app icon. apps I manualy sideloaded work without a problem. any idea?
    Have you tuned developer mode on?
    11-07-11 04:56 PM
  4. thoand's Avatar
    oh no, sorry I thaught that is not needed anymore. with activated developer mode everything is fine, thank you!
    11-08-11 02:11 AM
  5. Toddboy71's Avatar
    Hello, I have a problem.
    Every time I side load a converted android app (.apks to .bars using this app) that has been marked TESTED AND WORKING in a thread, and try to open it, it just does nothing. please help :S I see the icon, it works but the app itself doesn't.
    same issue here. anyone?
    11-08-11 05:28 AM
  6. nikgilbe's Avatar
    same issue here. anyone?
    Hi. If you had loaded the previous android player, you'll probably need to do a security wipe to get it running.

    Posted from my CrackBerry at wapforums.crackberry.com
    11-08-11 08:19 AM
  7. Toddboy71's Avatar
    Hi. If you had loaded the previous android player, you'll probably need to do a security wipe to get it running.

    Posted from my CrackBerry at wapforums.crackberry.com
    Already did that, twice. Weird.

    Posted from my CrackBerry at wapforums.crackberry.com
    11-08-11 09:07 AM
  8. SlcCorrado's Avatar
    Already did that, twice. Weird.

    Posted from my CrackBerry at wapforums.crackberry.com
    And you are on 2.0?
    11-08-11 10:56 AM
  9. Toddboy71's Avatar
    And you are on 2.0?
    Yes I am. Bizarre lol

    Posted from my CrackBerry at wapforums.crackberry.com
    11-08-11 11:01 AM
  10. SlcCorrado's Avatar
    Yes I am. Bizarre lol

    Posted from my CrackBerry at wapforums.crackberry.com
    That is bizarre. So you did a wipe on 1.0 and then updated to 2.0? Not sure why it wouldn't work from there. What apps are you trying to run?
    11-08-11 11:08 AM
  11. Toddboy71's Avatar
    That is bizarre. So you did a wipe on 1.0 and then updated to 2.0? Not sure why it wouldn't work from there. What apps are you trying to run?
    I initially upgraded to 2.0. Had issues loading .bar files via sideload. Did a security wipe, no luck. Did another security wipe, no luck. Went back to 1.07, then when the new beta came out, upgraded. Was able to sideload localbar and angry birds. Loaded kik,kindle and skyfire via localbar, icons show up, click on em, nothing. Rebooted multiple times, deleted and reinstalled, nothing. Guess I'll have to try and sideload as opposed to using localbar. Very weird.

    Posted from my CrackBerry at wapforums.crackberry.com
    11-08-11 11:13 AM
  12. SlcCorrado's Avatar
    I initially upgraded to 2.0. Had issues loading .bar files via sideload. Did a security wipe, no luck. Did another security wipe, no luck. Went back to 1.07, then when the new beta came out, upgraded. Was able to sideload localbar and angry birds. Loaded kik,kindle and skyfire via localbar, icons show up, click on em, nothing. Rebooted multiple times, deleted and reinstalled, nothing. Guess I'll have to try and sideload as opposed to using localbar. Very weird.

    Posted from my CrackBerry at wapforums.crackberry.com
    So you did both of the wipes on 2.0? That might be it. Also, localbar is nice as far as convenience but it does the same thing as DDPB & BBHTools
    11-08-11 11:20 AM
  13. hiennt's Avatar
    Yes, you are correct, I am using the https://localhost method. I was wondering why one one implemented this idea before.

    It is quite obvious that in development mode we can Install apps through the network, so using the same protocol we can install apps directly from the playbook.
    Hi yohan,

    I tried to connect to "https://localhost/cgi-bin/login.cgi?request_version=1" from Android code but I got exception saying "No route to host". Even with "https://127.0.0.1/cgi-bin/login.cgi?request_version=1"

    FYI, I set up the SSL as following, this code extracted from BarDeploy.jar

    Code:
              protected void initHttpClient(HttpClient httpClient)
    			throws NoSuchAlgorithmException, KeyManagementException {
    		HttpProtocolParams.setUserAgent(httpClient.getParams(),
    				"QNXWebClient/1.0");
    		TrustManager[] trustAllCerts = { new X509TrustManager() {
    			public X509Certificate[] getAcceptedIssuers() {
    				return null;
    			}
    
    			public void checkClientTrusted(X509Certificate[] arg0, String arg1) {
    			}
    
    			public void checkServerTrusted(X509Certificate[] arg0, String arg1) {
    			}
    		} };
    		// SSLContext sc = SSLContext.getInstance("SSL");
    		// sc.init(null, trustAllCerts, new SecureRandom());
    		try {
    			KeyStore trustStore = KeyStore.getInstance(KeyStore
    					.getDefaultType());
    			trustStore.load(null, null);
    			SSLSocketFactory sslSocketFactory = new MySSLSocketFactory(
    					trustStore);
    			sslSocketFactory
    					.setHostnameVerifier(new AllowAllHostnameVerifier());
    			Scheme sch = new Scheme("https", sslSocketFactory, 443);
    			httpClient.getConnectionManager().getSchemeRegistry().register(sch);
    		} catch (Exception e) {
    			e.printStackTrace();
    		}
    	}
    	public void printDetails(){
    		Log.i("device IP: ", "");
    	}
    	class MySSLSocketFactory extends SSLSocketFactory {
    		SSLContext sslContext = SSLContext.getInstance("SSL");
    
    		public MySSLSocketFactory(KeyStore truststore)
    				throws NoSuchAlgorithmException, KeyManagementException,
    				KeyStoreException, UnrecoverableKeyException {
    			super(truststore);
    
    			TrustManager tm = new X509TrustManager() {
    				public void checkClientTrusted(X509Certificate[] chain,
    						String authType) throws CertificateException {
    				}
    
    				public void checkServerTrusted(X509Certificate[] chain,
    						String authType) throws CertificateException {
    				}
    
    				public X509Certificate[] getAcceptedIssuers() {
    					return null;
    				}
    			};
    
    			sslContext.init(null, new TrustManager[] { tm }, null);
    		}
    
    		@Override
    		public Socket createSocket(Socket socket, String host, int port,
    				boolean autoClose) throws IOException, UnknownHostException {
    			return sslContext.getSocketFactory().createSocket(socket, host,
    					port, autoClose);
    		}
    
    		@Override
    		public Socket createSocket() throws IOException {
    			return sslContext.getSocketFactory().createSocket();
    		}
    	}
    11-10-11 10:04 AM
  14. f1mx's Avatar
    tinyhack, I'm always getting an error when trying to install my bar files. Do you have any idea about how to deal with error "result::failure 500 cannot determine Package-id"?
    11-10-11 10:48 AM
  15. tinyhack's Avatar
    Hi yohan,

    I tried to connect to "https://localhost/cgi-bin/login.cgi?request_version=1" from Android code but I got exception saying "No route to host". Even with "https://127.0.0.1/cgi-bin/login.cgi?request_version=1"
    Make sure you have permission to access network (access_internet permission).
    11-11-11 09:54 AM
  16. FF22's Avatar
    I skimmed the thread so may have missed the answer to my question:

    How do you REMOVE or UNinstall a bar file installed with localbar? I tried using DDPB but it does not show the apps installed by localbar, only those installed using DDPB itself.

    So, do you just press/hold on the icon on the "homescreen" and then Delete it or is there a more formal way to UNinstall these bar files?

    Thanks in advance.
    11-21-11 09:20 PM
  17. peter9477's Avatar
    F2, any of the available ways to install or delete apps work in the same way, so yes, merely touch/hold and Delete will do exactly what any other approach will do. Unless something goes wrong, and I haven't heard of it yet, the entire sandbox for the app (data and code) will be removed, along with some metadata. (I think possibly it remembers permission settings and reuses them on reinstall, but I've never checked that myself.)
    11-21-11 10:36 PM
  18. danield76's Avatar
    Just sideloaded some apps and i saw a new message?
    First i had to type the word blackberry and after that my device password.
    Perhaps it is a simple change in the script to get this wonderfull app working again?
    11-23-11 02:35 PM
  19. bounce007's Avatar
    Does Localbar continue to install while the PlayBook is in stand by mode (or the screen turns off or password locked?)

    EDIT: Yes it does! lol
    Last edited by bounce007; 12-08-11 at 06:43 AM.
    11-23-11 07:53 PM
  20. jrsbccf's Avatar
    any plans for an update to use with the new 2.0 beta?

    nvm- just saw your update
    Last edited by jrsbccf; 11-25-11 at 12:00 PM.
    11-25-11 10:04 AM
  21. redrumsilence's Avatar
    cant download, get a login error when i try to open the page :s
    11-30-11 11:31 AM
  22. ktheriddle's Avatar
    This app has been working flawlessly for me up untilnow. Suddenly I am getting an Error 'unable to retrieve data' ...... help?
    11-30-11 04:44 PM
  23. fuertemac's Avatar
    any solution to work in the new version 2.0?
    11-30-11 04:56 PM
  24. ktheriddle's Avatar
    any solution to work in the new version 2.0?
    ooooh is that why it's suddenly not working? duh, why didn't I think of that?!
    11-30-11 05:01 PM
  25. lebob23's Avatar
    how do I unistall?
    a33a likes this.
    12-07-11 09:01 PM
87 1234
LINK TO POST COPIED TO CLIPBOARD