Re: [android-developers] How to sync development projects?

2012-12-19 Thread lbendlin
Then you haven't worked in iOS development. There Apple have generously 
discontinued support for CVS, and are now huffing and puffing to 
discontinue support for SVN too. Git or nothing.

On Tuesday, December 18, 2012 7:39:25 PM UTC-5, TreKing wrote:

 On Tue, Dec 18, 2012 at 2:35 AM, Piren gpi...@gmail.com javascript:wrote:

 In that case, you should really move to git as Nikolay suggested :) Its 
 basically doing exactly what you want...


 Meh, I'm set in my ways with SVN. I don't use this that frequently that I 
 feel it's worth the trouble learning and moving to a new version system 
 right now. Good to know though for future reference.


 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago 
 transit tracking app for Android-powered devices

  

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] How to sync development projects?

2012-12-19 Thread TreKing
On Wed, Dec 19, 2012 at 5:31 AM, lbendlin l...@bendlin.us wrote:

 Then you haven't worked in iOS development.


Correct, though I hope to change that relatively soon...


 There Apple have generously discontinued support for CVS, and are now
 huffing and puffing to discontinue support for SVN too.


Not to derail this thread further (I think the OP has long lost interest
=P) but how did they manage that ...? Surely you can use whatever you want
on your files, even if there is nothing built in to the IDE?

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] How to sync development projects?

2012-12-18 Thread Piren
Only now i've understood what you're trying to accomplish... i've missed 
the part where you actually commit to the local repo. i understood it as if 
you're just working on your local files and then let the Shared folder sync 
them... not that you actually perform a Commit locally and then sync the 
.svn files :)

In that case, you should really move to git as Nikolay suggested :) Its 
basically doing exactly what you want...

On Monday, December 17, 2012 6:25:29 PM UTC+2, TreKing wrote:

 On Mon, Dec 17, 2012 at 2:33 AM, Piren gpi...@gmail.com javascript:wrote:

 It feels like we're not on the same page as to how SVN works... 


 Apparently not, lol
  

 the files you Checkout are not stored in the cloud, you dont need any 
 connection to the repository when you're doing doing any actions against 
 the code. when you do a Checkout, you make a local copy of that specific 
 version of the code on your computer (which makes them totally offline). 
 you can do whatever you want without any connection to the SVN repository.


 Right ...
  

 once you want to update your code (what you now call sync it. either 
 sync up to the repository or sync down from it) you just connect to the 
 network and Update/Commit (what you do now with Sync Folder).


 That's the key point here - I don't want to wait until I've connected to 
 my network to check in my code. Using SVN or any revision control would be 
 pretty pointless if I did a weeks worth of changes between reconnecting to 
 the repo and committing changes. I like to do small, frequent changes and 
 commits as I go along. I sometimes also switch between different branches 
 (new feature branch vs main vs bug fix branches, for example). 

 So how I would commit to the repo or switch to a different branch within 
 it *while disconnected from my home network* without a local offline 
 copy of my entire repo on my laptop?

 On Mon, Dec 17, 2012 at 2:37 AM, Piren gpi...@gmail.com javascript:wrote:

 When you Checkout a project from SVN, you basically set up a synced 
 offline folder on your computer with that specific version of the files 
 (usually the latest unless chosen otherwise)... 


 I know what an SVN Checkout does. It's the checking back in without access 
 to the real repo that is the problem that I'm trying address. Do you follow 
 me now? 

 On Mon, Dec 17, 2012 at 2:46 AM, Nikolay Elenkov 
 nikolay...@gmail.comjavascript:
  wrote:

 Of course you an simply use git and you can commit as much as you like 
 even when offline, underground, etc. Then push to your repo when you get 
 the chance.


 That is pretty much what I'm trying to achieve, though I haven't used GIT. 


 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago 
 transit tracking app for Android-powered devices

  

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] How to sync development projects?

2012-12-18 Thread TreKing
On Tue, Dec 18, 2012 at 2:35 AM, Piren gpi...@gmail.com wrote:

 In that case, you should really move to git as Nikolay suggested :) Its
 basically doing exactly what you want...


Meh, I'm set in my ways with SVN. I don't use this that frequently that I
feel it's worth the trouble learning and moving to a new version system
right now. Good to know though for future reference.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] How to sync development projects?

2012-12-17 Thread Piren
Ahh... you're doing exactly the same thing with the synced folder...
Go home, do an Update. Go to the airport, do all the changes (to your 
heart's content :-P) then when you go home, Commit.

Exact same process as you do now days, but without losing versioning. 

It feels like we're not on the same page as to how SVN works... the files 
you Checkout are not stored in the cloud, you dont need any connection to 
the repository when you're doing doing any actions against the code. when 
you do a Checkout, you make a local copy of that specific version of the 
code on your computer (which makes them totally offline). you can do 
whatever you want without any connection to the SVN repository. once you 
want to update your code (what you now call sync it. either sync up to 
the repository or sync down from it) you just connect to the network and 
Update/Commit (what you do now with Sync Folder).



On Sunday, December 16, 2012 7:39:48 PM UTC+2, TreKing wrote:

 On Sun, Dec 16, 2012 at 11:31 AM, Fred Niggle 
 fred@googlemail.comjavascript:
  wrote:

 erm VPN?


 LOL - yeah. Should have added that does not require a network connection.


 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago 
 transit tracking app for Android-powered devices

  

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] How to sync development projects?

2012-12-17 Thread Piren
Just another comment to make the point clear - When you Checkout a project 
from SVN, you basically set up a synced offline folder on your computer 
with that specific version of the files (usually the latest unless chosen 
otherwise)... 

So SVN is in it's core pretty much the exact same thing as what windows 
Sharedfolders with Available Offline on them. 
You just get a whole lot of more features when you use SVN (like keeping a 
history of all the files, being able to share the project with more users 
and etc)

On Monday, December 17, 2012 10:33:17 AM UTC+2, Piren wrote:

 Ahh... you're doing exactly the same thing with the synced folder...
 Go home, do an Update. Go to the airport, do all the changes (to your 
 heart's content :-P) then when you go home, Commit.

 Exact same process as you do now days, but without losing versioning. 

 It feels like we're not on the same page as to how SVN works... the files 
 you Checkout are not stored in the cloud, you dont need any connection to 
 the repository when you're doing doing any actions against the code. when 
 you do a Checkout, you make a local copy of that specific version of the 
 code on your computer (which makes them totally offline). you can do 
 whatever you want without any connection to the SVN repository. once you 
 want to update your code (what you now call sync it. either sync up to 
 the repository or sync down from it) you just connect to the network and 
 Update/Commit (what you do now with Sync Folder).



 On Sunday, December 16, 2012 7:39:48 PM UTC+2, TreKing wrote:

 On Sun, Dec 16, 2012 at 11:31 AM, Fred Niggle fred@googlemail.comwrote:

 erm VPN?


 LOL - yeah. Should have added that does not require a network 
 connection.


 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago 
 transit tracking app for Android-powered devices

  

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] How to sync development projects?

2012-12-17 Thread Nikolay Elenkov
On Mon, Dec 17, 2012 at 5:37 PM, Piren gpi...@gmail.com wrote:
 Just another comment to make the point clear - When you Checkout a project
 from SVN, you basically set up a synced offline folder on your computer
 with that specific version of the files (usually the latest unless chosen
 otherwise)...

Interesting and Windows-specific analogy :)

Of course you an simply use git and you can commit as much as you
like even when offline, underground, etc. Then push to your repo when
you get the chance.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] How to sync development projects?

2012-12-17 Thread Piren
well... he is using shared offline folders now :-P


On Monday, December 17, 2012 10:46:04 AM UTC+2, Nikolay Elenkov wrote:

 On Mon, Dec 17, 2012 at 5:37 PM, Piren gpi...@gmail.com javascript: 
 wrote: 
  Just another comment to make the point clear - When you Checkout a 
 project 
  from SVN, you basically set up a synced offline folder on your 
 computer 
  with that specific version of the files (usually the latest unless 
 chosen 
  otherwise)... 

 Interesting and Windows-specific analogy :) 

 Of course you an simply use git and you can commit as much as you 
 like even when offline, underground, etc. Then push to your repo when 
 you get the chance. 


-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] How to sync development projects?

2012-12-17 Thread TreKing
On Mon, Dec 17, 2012 at 2:33 AM, Piren gpi...@gmail.com wrote:

 It feels like we're not on the same page as to how SVN works...


Apparently not, lol


 the files you Checkout are not stored in the cloud, you dont need any
 connection to the repository when you're doing doing any actions against
 the code. when you do a Checkout, you make a local copy of that specific
 version of the code on your computer (which makes them totally offline).
 you can do whatever you want without any connection to the SVN repository.


Right ...


 once you want to update your code (what you now call sync it. either
 sync up to the repository or sync down from it) you just connect to the
 network and Update/Commit (what you do now with Sync Folder).


That's the key point here - I don't want to wait until I've connected to my
network to check in my code. Using SVN or any revision control would be
pretty pointless if I did a weeks worth of changes between reconnecting to
the repo and committing changes. I like to do small, frequent changes and
commits as I go along. I sometimes also switch between different branches
(new feature branch vs main vs bug fix branches, for example).

So how I would commit to the repo or switch to a different branch within it
*while disconnected from my home network* without a local offline copy of
my entire repo on my laptop?

On Mon, Dec 17, 2012 at 2:37 AM, Piren gpi...@gmail.com wrote:

 When you Checkout a project from SVN, you basically set up a synced
 offline folder on your computer with that specific version of the files
 (usually the latest unless chosen otherwise)...


I know what an SVN Checkout does. It's the checking back in without access
to the real repo that is the problem that I'm trying address. Do you follow
me now?

On Mon, Dec 17, 2012 at 2:46 AM, Nikolay Elenkov
nikolay.elen...@gmail.comwrote:

 Of course you an simply use git and you can commit as much as you like
 even when offline, underground, etc. Then push to your repo when you get
 the chance.


That is pretty much what I'm trying to achieve, though I haven't used GIT.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] How to sync development projects?

2012-12-17 Thread lbendlin
Anyone here who can tell the story of I moved from SVN to git and have the 
consecutive app versioning numbers to prove it?

On Monday, December 17, 2012 11:25:29 AM UTC-5, TreKing wrote:

 On Mon, Dec 17, 2012 at 2:33 AM, Piren gpi...@gmail.com javascript:wrote:

 It feels like we're not on the same page as to how SVN works... 


 Apparently not, lol
  

 the files you Checkout are not stored in the cloud, you dont need any 
 connection to the repository when you're doing doing any actions against 
 the code. when you do a Checkout, you make a local copy of that specific 
 version of the code on your computer (which makes them totally offline). 
 you can do whatever you want without any connection to the SVN repository.


 Right ...
  

 once you want to update your code (what you now call sync it. either 
 sync up to the repository or sync down from it) you just connect to the 
 network and Update/Commit (what you do now with Sync Folder).


 That's the key point here - I don't want to wait until I've connected to 
 my network to check in my code. Using SVN or any revision control would be 
 pretty pointless if I did a weeks worth of changes between reconnecting to 
 the repo and committing changes. I like to do small, frequent changes and 
 commits as I go along. I sometimes also switch between different branches 
 (new feature branch vs main vs bug fix branches, for example). 

 So how I would commit to the repo or switch to a different branch within 
 it *while disconnected from my home network* without a local offline 
 copy of my entire repo on my laptop?

 On Mon, Dec 17, 2012 at 2:37 AM, Piren gpi...@gmail.com javascript:wrote:

 When you Checkout a project from SVN, you basically set up a synced 
 offline folder on your computer with that specific version of the files 
 (usually the latest unless chosen otherwise)... 


 I know what an SVN Checkout does. It's the checking back in without access 
 to the real repo that is the problem that I'm trying address. Do you follow 
 me now? 

 On Mon, Dec 17, 2012 at 2:46 AM, Nikolay Elenkov 
 nikolay...@gmail.comjavascript:
  wrote:

 Of course you an simply use git and you can commit as much as you like 
 even when offline, underground, etc. Then push to your repo when you get 
 the chance.


 That is pretty much what I'm trying to achieve, though I haven't used GIT. 


 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago 
 transit tracking app for Android-powered devices

  

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] How to sync development projects?

2012-12-16 Thread Piren
ah... if you're using SVN, why are you also using the repository as a 
shared folder? Or did i just get you wrong?

On Friday, December 14, 2012 9:02:10 PM UTC+2, TreKing wrote:

 On Fri, Dec 14, 2012 at 12:52 PM, Jungle Jim jjjun...@gmail.comjavascript:
  wrote:

 Does anyone know of a utility that will easily sync the updates to the 
 files like the xml and src betwee the two PCs?


 I don't know about utility, but what I do is make my SVN repository 
 shareable on my home network, then make it available offline on my laptop. 
 Work anywhere you want, make any changes, then get back to your network and 
 synchronize the folder, and update your PC to the latest changes. Only 
 caveat is you have to make sure you only make changes in one place, or 
 conflicts arise that are difficult to resolve (in my experience).


 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago 
 transit tracking app for Android-powered devices

  

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] How to sync development projects?

2012-12-16 Thread TreKing
On Sun, Dec 16, 2012 at 3:41 AM, Piren gpi...@gmail.com wrote:

 ah... if you're using SVN, why are you also using the repository as a
 shared folder? Or did i just get you wrong?


Not sure I get what you're asking ...

Making it shareable allows me to access it on my laptop. Then I mark it
available offline and can operate on the repo as if it were local to the
laptop while away from the home network.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] How to sync development projects?

2012-12-16 Thread Piren
That's what i thought you're doing and i'm not sure why... Thats just a 
synced folder which is nice, but its not using the real purpose of SVN - 
versioning... 

If its already on SVN, all you need to do to access it on the Laptop is 
just Checkout the code and thats it... then any update can be commited or 
merged easily (and still be available offline).


On Sunday, December 16, 2012 12:25:55 PM UTC+2, TreKing wrote:

 On Sun, Dec 16, 2012 at 3:41 AM, Piren gpi...@gmail.com javascript:wrote:

 ah... if you're using SVN, why are you also using the repository as a 
 shared folder? Or did i just get you wrong?


 Not sure I get what you're asking ...

 Making it shareable allows me to access it on my laptop. Then I mark it 
 available offline and can operate on the repo as if it were local to the 
 laptop while away from the home network.


 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago 
 transit tracking app for Android-powered devices

  

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] How to sync development projects?

2012-12-16 Thread TreKing
On Sun, Dec 16, 2012 at 6:43 AM, Piren gpi...@gmail.com wrote:

 If its already on SVN, all you need to do to access it on the Laptop is
 just Checkout the code and thats it... then any update can be commited or
 merged easily (and still be available offline).


My Repo is local and lives on my PC, not in the cloud. I can't commit,
merge, or sync to it from the laptop if it's not connected to my home
network. So the repo becomes useless when I'm siting at an airport. Hence
making the repo itself a shared folder which can be accessed offline on the
laptop. Then I can work to my hearts content remotely and sync back up when
I get home. Make sense?

Unless you know of a way of connecting to a repo on a PC from a laptop
without being on the same network that I'm not aware of?

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] How to sync development projects?

2012-12-16 Thread Fred Niggle
erm VPN?

On 16 December 2012 17:29, TreKing treking...@gmail.com wrote:

 On Sun, Dec 16, 2012 at 6:43 AM, Piren gpi...@gmail.com wrote:

 If its already on SVN, all you need to do to access it on the Laptop is
 just Checkout the code and thats it... then any update can be commited or
 merged easily (and still be available offline).


 My Repo is local and lives on my PC, not in the cloud. I can't commit,
 merge, or sync to it from the laptop if it's not connected to my home
 network. So the repo becomes useless when I'm siting at an airport. Hence
 making the repo itself a shared folder which can be accessed offline on the
 laptop. Then I can work to my hearts content remotely and sync back up when
 I get home. Make sense?

 Unless you know of a way of connecting to a repo on a PC from a laptop
 without being on the same network that I'm not aware of?


 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
 transit tracking app for Android-powered devices

  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 
Sent from an Ubuntu Desktop.

Ubuntu Speech 
inputhttps://play.google.com/store/apps/details?id=com.nds.ubuntuspeechinputis
now available on Google Play, along with Magnetic
Door Alarm 
apphttps://play.google.com/store/apps/details?id=com.nds.magneticdooralarm
.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] How to sync development projects?

2012-12-16 Thread TreKing
On Sun, Dec 16, 2012 at 11:31 AM, Fred Niggle fred.nig...@googlemail.comwrote:

 erm VPN?


LOL - yeah. Should have added that does not require a network connection.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] How to sync development projects?

2012-12-16 Thread Fred Niggle
ah, that makes more sense

On 16 December 2012 17:39, TreKing treking...@gmail.com wrote:

 On Sun, Dec 16, 2012 at 11:31 AM, Fred Niggle 
 fred.nig...@googlemail.comwrote:

 erm VPN?


 LOL - yeah. Should have added that does not require a network connection.



 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
 transit tracking app for Android-powered devices

  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 
Sent from an Ubuntu Desktop.

Ubuntu Speech 
inputhttps://play.google.com/store/apps/details?id=com.nds.ubuntuspeechinputis
now available on Google Play, along with Magnetic
Door Alarm 
apphttps://play.google.com/store/apps/details?id=com.nds.magneticdooralarm
.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] How to sync development projects?

2012-12-14 Thread rambabu mareedu
maintain workspace in cloud


On Sat, Dec 15, 2012 at 12:22 AM, Jungle Jim jjjungle...@gmail.com wrote:

 I am developing apps using the Android SDK and Eclipse with both my
 desktop PC and laptop.

 Does anyone know of a utility that will easily sync the updates to the
 files like the xml and src betwee the two PCs?

 Thanks

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 
Regards
Rambabu Mareedu
9581411199

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] How to sync development projects?

2012-12-14 Thread TreKing
On Fri, Dec 14, 2012 at 12:52 PM, Jungle Jim jjjungle...@gmail.com wrote:

 Does anyone know of a utility that will easily sync the updates to the
 files like the xml and src betwee the two PCs?


I don't know about utility, but what I do is make my SVN repository
shareable on my home network, then make it available offline on my laptop.
Work anywhere you want, make any changes, then get back to your network and
synchronize the folder, and update your PC to the latest changes. Only
caveat is you have to make sure you only make changes in one place, or
conflicts arise that are difficult to resolve (in my experience).

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] How to sync development projects?

2012-12-14 Thread Latimerius
On Fri, Dec 14, 2012 at 8:02 PM, TreKing treking...@gmail.com wrote:

 On Fri, Dec 14, 2012 at 12:52 PM, Jungle Jim jjjungle...@gmail.comwrote:

 Does anyone know of a utility that will easily sync the updates to the
 files like the xml and src betwee the two PCs?


 I don't know about utility, but what I do is make my SVN repository
 shareable on my home network, then make it available offline on my laptop.
 Work anywhere you want, make any changes, then get back to your network and
 synchronize the folder, and update your PC to the latest changes. Only
 caveat is you have to make sure you only make changes in one place, or
 conflicts arise that are difficult to resolve (in my experience).


Yes, I do the same, except with Git.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en