My favorites | Sign in
Logo
                
Details: Show all Hide all

Older

  • Oct 18, 2009
    issue 2 (Chapter8 SMSNotifyExample - SMSMessage variable undefined) commented on by shaobin0604   -   The body of onReceive method is empty, how could onReceiveIntent method get called?
    The body of onReceive method is empty, how could onReceiveIntent method get called?
  • Jul 27, 2009
    r270 (modified the project to work with sdk level 1.5) committed by frank.ableson   -   modified the project to work with sdk level 1.5
    modified the project to work with sdk level 1.5
  • Jul 26, 2009
    r269 (updated project name from Chapter13 to Chapter12) committed by frank.ableson   -   updated project name from Chapter13 to Chapter12
    updated project name from Chapter13 to Chapter12
  • Jul 26, 2009
    r268 (updated project name from Chapter13 to Chapter12) committed by frank.ableson   -   updated project name from Chapter13 to Chapter12
    updated project name from Chapter13 to Chapter12
  • Jul 26, 2009
    r267 (removed R.java : this is an auto generated file and should n...) committed by frank.ableson   -   removed R.java : this is an auto generated file and should not be in the source tree.
    removed R.java : this is an auto generated file and should not be in the source tree.
  • Jul 09, 2009
    issue 2 (Chapter8 SMSNotifyExample - SMSMessage variable undefined) commented on by charlie.collins   -   Robi, can you look at this? I think this is from your SMS example. Either way one of us needs to check it out as soon as possible.
    Robi, can you look at this? I think this is from your SMS example. Either way one of us needs to check it out as soon as possible.
  • Jun 30, 2009
    issue 3 (Make single code download) Status changed by charlie.collins   -   Done, see downloads, also linked from home page.
    Status: Fixed
    Done, see downloads, also linked from home page.
    Status: Fixed
  • Jun 30, 2009
    issue 1 (Wrong checkout command) Status changed by charlie.collins   -   I updated the home page withe better instructions.
    Status: Fixed
    I updated the home page withe better instructions.
    Status: Fixed
  • Jun 30, 2009
    uadcode_allchapters_20090630.zip (UAD code ALL chapters - 2009-06-30) file uploaded by charlie.collins   -  
    Labels: Featured Type-Archive OpSys-All
    Labels: Featured Type-Archive OpSys-All
  • Jun 30, 2009
    issue 3 (Make single code download) reported by charlie.collins   -   Right now the way I have SVN organized it's great for individual chapter checkouts, but it's difficult to checkout the whole thing at once, or for those that aren't comfortable with SVN. Make instructions for SVN checkouts for indiv chapters, and for all at once loop - and make single artifact with everything in it and host it here.
    Right now the way I have SVN organized it's great for individual chapter checkouts, but it's difficult to checkout the whole thing at once, or for those that aren't comfortable with SVN. Make instructions for SVN checkouts for indiv chapters, and for all at once loop - and make single artifact with everything in it and host it here.
  • Jun 30, 2009
    issue 1 (Wrong checkout command) commented on by charlie.collins   -   I am going to add some stuff to the checkout home page to help with this - and I am going to make a single artifact download for those that would prefer that. Thanks again for the report.
    I am going to add some stuff to the checkout home page to help with this - and I am going to make a single artifact download for those that would prefer that. Thanks again for the report.
  • Jun 30, 2009
    issue 2 (Chapter8 SMSNotifyExample - SMSMessage variable undefined) commented on by charlie.collins   -   Thanks, I will check this out ASAP.
    Thanks, I will check this out ASAP.
  • Jun 23, 2009
    issue 2 (Chapter8 SMSNotifyExample - SMSMessage variable undefined) reported by az9702   -   (1) Problem: In Chapter8 SMSNotifExample, "messages" is allocated but not set to pdusObj. (2) Source snip showing problem: From SMSNotifyExample.java (with my comment) if (bundle != null) { Object[] pdusObj = (Object[]) bundle.get("pdus"); SmsMessage[] messages = new SmsMessage[pdusObj.length]; for (SmsMessage currentMessage : messages) { sb.append("Received compressed SMS\nFrom: "); //Note: currentMessage not set sb.append(currentMessage.getDisplayOriginatingAddress()); .... } } (3) Solution: SmsMessage.createFromPdu need to be called before sb.append : currentMessage = SmsMessage.createFromPdu( (byte[]) pdusObj[index]);
    (1) Problem: In Chapter8 SMSNotifExample, "messages" is allocated but not set to pdusObj. (2) Source snip showing problem: From SMSNotifyExample.java (with my comment) if (bundle != null) { Object[] pdusObj = (Object[]) bundle.get("pdus"); SmsMessage[] messages = new SmsMessage[pdusObj.length]; for (SmsMessage currentMessage : messages) { sb.append("Received compressed SMS\nFrom: "); //Note: currentMessage not set sb.append(currentMessage.getDisplayOriginatingAddress()); .... } } (3) Solution: SmsMessage.createFromPdu need to be called before sb.append : currentMessage = SmsMessage.createFromPdu( (byte[]) pdusObj[index]);
  • Jun 22, 2009
    issue 1 (Wrong checkout command) commented on by casper.bang   -   Fair enough. I admit to not reading the README file, I just asserted that something wasn't quite right and started exploring the tree. Perhaps a note in the wiki then? That's where I would've dropped a few lines to help my fellow readers if I had access.
    Fair enough. I admit to not reading the README file, I just asserted that something wasn't quite right and started exploring the tree. Perhaps a note in the wiki then? That's where I would've dropped a few lines to help my fellow readers if I had access.
  • Jun 22, 2009
    issue 1 (Wrong checkout command) Status changed by charlie.collins   -   That's my fault, sort of, but I am not sure there is anything more I can do about it. The "documentation" is the same default on every google code hosting site. It, rightly so, just says checkout from the trunk to start. I decided for this project though to break it up by chapter, but still use 1 google code hosting project, so I was in between. I therefore put a README in the root/trunk that points to where checkout needs to go - http://unlocking-android.googlecode.com/svn/trunk/README.txt. I will try to make some more notes/docs, but don't really want to change the structure this late in the game.
    Status:
    That's my fault, sort of, but I am not sure there is anything more I can do about it. The "documentation" is the same default on every google code hosting site. It, rightly so, just says checkout from the trunk to start. I decided for this project though to break it up by chapter, but still use 1 google code hosting project, so I was in between. I therefore put a README in the root/trunk that points to where checkout needs to go - http://unlocking-android.googlecode.com/svn/trunk/README.txt. I will try to make some more notes/docs, but don't really want to change the structure this late in the game.
    Status:
  • Jun 20, 2009
    issue 1 (Wrong checkout command) reported by casper.bang   -   The documentation says to issue following command to checkout the source: svn checkout http://unlocking-android.googlecode.com/svn/trunk/ unlocking-android-read-only However, this appears to be too high up in the tree and will only fetch a few XML files. To actually checkout the source code samples for each chapter, issue this instead: svn checkout http://unlocking-android.googlecode.com/svn/ unlocking-android-samples
    The documentation says to issue following command to checkout the source: svn checkout http://unlocking-android.googlecode.com/svn/trunk/ unlocking-android-read-only However, this appears to be too high up in the tree and will only fetch a few XML files. To actually checkout the source code samples for each chapter, issue this instead: svn checkout http://unlocking-android.googlecode.com/svn/ unlocking-android-samples
  • May 07, 2009
    r266 ([No log message]) committed by charlie.collins   -   [No log message]
    [No log message]
  • May 07, 2009
    r265 ([No log message]) committed by charlie.collins   -   [No log message]
    [No log message]
  • May 07, 2009
    r264 (checking with 1.5 ) committed by charlie.collins   -   checking with 1.5
    checking with 1.5
  • May 07, 2009
    r263 ([No log message]) committed by charlie.collins   -   [No log message]
    [No log message]
  • May 07, 2009
    r262 ([No log message]) committed by charlie.collins   -   [No log message]
    [No log message]
  • May 07, 2009
    r261 (checking with 1.5 ) committed by charlie.collins   -   checking with 1.5
    checking with 1.5
  • May 07, 2009
    r260 (checking with 1.5 ) committed by charlie.collins   -   checking with 1.5
    checking with 1.5
  • May 07, 2009
    r259 (checking with 1.5 ) committed by charlie.collins   -   checking with 1.5
    checking with 1.5
  • Apr 08, 2009
    r258 (adding native code) committed by frank.ableson   -   adding native code
    adding native code
  • Apr 08, 2009
    r257 (adding native code) committed by frank.ableson   -   adding native code
    adding native code
  • Apr 08, 2009
    r256 (adding native code) committed by frank.ableson   -   adding native code
    adding native code
  • Apr 08, 2009
    r255 (adding native code) committed by frank.ableson   -   adding native code
    adding native code
  • Apr 08, 2009
    r254 (adding native code) committed by frank.ableson   -   adding native code
    adding native code
  • Apr 08, 2009
    r253 (adding native code) committed by frank.ableson   -   adding native code
    adding native code
  • Apr 08, 2009
    r252 (adding native code) committed by frank.ableson   -   adding native code
    adding native code
  • Apr 08, 2009
    r251 (adding native code) committed by frank.ableson   -   adding native code
    adding native code
  • Apr 08, 2009
    r250 (adding native code) committed by frank.ableson   -   adding native code
    adding native code
  • Apr 08, 2009
    r249 (DaytimeClient ) committed by frank.ableson   -   DaytimeClient
    DaytimeClient
  • Apr 08, 2009
    r248 (DaytimeClient ) committed by frank.ableson   -   DaytimeClient
    DaytimeClient
  • Apr 08, 2009
    r247 (DaytimeClient ) committed by frank.ableson   -   DaytimeClient
    DaytimeClient
  • Apr 08, 2009
    r246 (DaytimeClient ) committed by frank.ableson   -   DaytimeClient
    DaytimeClient
  • Apr 08, 2009
    r245 (DaytimeClient ) committed by frank.ableson   -   DaytimeClient
    DaytimeClient
  • Apr 08, 2009
    r244 (DaytimeClient ) committed by frank.ableson   -   DaytimeClient
    DaytimeClient
  • Apr 08, 2009
    r243 (daytime client - used with native code from chapter 13 ) committed by frank.ableson   -   daytime client - used with native code from chapter 13
    daytime client - used with native code from chapter 13
  • Apr 08, 2009
    r242 (native code ) committed by frank.ableson   -   native code
    native code
  • Apr 08, 2009
    r241 (adding chapter 12 server code. Mostly php, sorry for you ja...) committed by frank.ableson   -   adding chapter 12 server code. Mostly php, sorry for you java purists...
    adding chapter 12 server code. Mostly php, sorry for you java purists...
  • Apr 08, 2009
    r240 (adding chapter 12 server code. Mostly php, sorry for you ja...) committed by frank.ableson   -   adding chapter 12 server code. Mostly php, sorry for you java purists...
    adding chapter 12 server code. Mostly php, sorry for you java purists...
  • Apr 08, 2009
    r239 (adding chapter 12 server code. Mostly php, sorry for you ja...) committed by frank.ableson   -   adding chapter 12 server code. Mostly php, sorry for you java purists...
    adding chapter 12 server code. Mostly php, sorry for you java purists...
  • Apr 08, 2009
    r238 (adding chapter 12 server code. Mostly php, sorry for you ja...) committed by frank.ableson   -   adding chapter 12 server code. Mostly php, sorry for you java purists...
    adding chapter 12 server code. Mostly php, sorry for you java purists...
  • Apr 08, 2009
    r237 (adding chapter 12 server code. Mostly php, sorry for you ja...) committed by frank.ableson   -   adding chapter 12 server code. Mostly php, sorry for you java purists...
    adding chapter 12 server code. Mostly php, sorry for you java purists...
  • Apr 08, 2009
    r236 (adding chapter 12 server code. Mostly php, sorry for you ja...) committed by frank.ableson   -   adding chapter 12 server code. Mostly php, sorry for you java purists...
    adding chapter 12 server code. Mostly php, sorry for you java purists...
  • Apr 08, 2009
    r235 (adding chapter 12 server code. Mostly php, sorry for you ja...) committed by frank.ableson   -   adding chapter 12 server code. Mostly php, sorry for you java purists...
    adding chapter 12 server code. Mostly php, sorry for you java purists...
  • Apr 08, 2009
    r234 (adding chapter 12 server code. Mostly php, sorry for you ja...) committed by frank.ableson   -   adding chapter 12 server code. Mostly php, sorry for you java purists...
    adding chapter 12 server code. Mostly php, sorry for you java purists...
  • Apr 08, 2009
    r233 (adding chapter 12 server code. Mostly php, sorry for you ja...) committed by frank.ableson   -   adding chapter 12 server code. Mostly php, sorry for you java purists...
    adding chapter 12 server code. Mostly php, sorry for you java purists...
 
Hosted by Google Code