VGCollect Forum

VGCollect Site Stuff => VGCollect for Android => Topic started by: matt on August 02, 2012, 03:39:05 pm

Title: Android Developers?
Post by: matt on August 02, 2012, 03:39:05 pm
Just an open call to see if we have any Android devs out in the community? Let me know!
Title: Re: Android Developers?
Post by: jaydepps on August 03, 2012, 12:10:41 pm
I've been trying to learn, but unfortunately at this time I am not that good.
Title: Re: Android Developers?
Post by: ecalleros88 on September 25, 2012, 01:50:35 am
I played around with developing for Android a little while back, I have a degree in programming just haven't really used it much lately. I'd love to help though, the site is great!
Title: Re: Android Developers?
Post by: kirbysuperstar on September 29, 2012, 04:17:52 am
I keep meaning to learn Android/Java/programming in general. About the most I've done is a batch file here and a bit of editing to PHP/Python to make things work for me. One day..
Title: Re: Android Developers?
Post by: thaddy on November 26, 2012, 08:56:12 am
I have some basics on android programming and i'm still improving my skills on my university. If You need any help let me know, i can help. By the way, this is great site. Greetings from Poland!
Title: Re: Android Developers?
Post by: matt on November 27, 2012, 04:45:48 pm
I have some basics on android programming and i'm still improving my skills on my university. If You need any help let me know, i can help. By the way, this is great site. Greetings from Poland!

Thanks! I want to just open source the app and get it up on github I simply just don't have the time right now to manage it. Hopefully I'll make some progress on that soon.
Title: Re: Android Developers?
Post by: thaddy on November 27, 2012, 04:57:56 pm
Ok, I will be happy to help.
Title: Re: Android Developers?
Post by: matt on November 28, 2012, 11:44:38 am
Ok, I will be happy to help.

Do you have any experience working with git/github? The main issue that I'm dealing with it that I don't want to expose some of the server side API that I've written for VGC. I think with little effort I could rewrite some of it to store the API key in a file and just add it to .gitignore. I'd also need to create a few keys for developers to use.
Title: Re: Android Developers?
Post by: thaddy on November 30, 2012, 09:39:42 am
I haven't worked with git, so I can't help you with that. I worked only with svn.
Title: Re: Android Developers?
Post by: pceslayer on January 31, 2013, 11:41:32 am
I have a buddy who dabbles into android if you are still looking for someone to help with the code.

Title: Re: Android Developers?
Post by: ignition365 on January 12, 2015, 11:21:34 am
Matt, I am a software developer who has been using the site and app for a while.  Finally got tired of waiting for updates and found the forum.

I would be happy to take a look at the code and try to update and fix things.
Title: Re: Android Developers?
Post by: matt on January 12, 2015, 02:03:13 pm
Matt, I am a software developer who has been using the site and app for a while.  Finally got tired of waiting for updates and found the forum.

I would be happy to take a look at the code and try to update and fix things.

Hey - shoot me a message over at matt@vgcollect.com. If you've got Android experience I can send you an updated apk and give you access to the repo.
Title: Re: Android Developers?
Post by: ignition365 on January 12, 2015, 05:27:26 pm
Sent you an email.
Title: Re: Android Developers?
Post by: solvesoul on March 26, 2015, 04:01:39 pm
Hi, I'm a junior app developer. I'm familiar with Windows Phone, Windows Store and Android. If you need any help on a subject about Git or Android then I can happily help you out. If you want to open source the app that'd be great too. As it would open up opportunities to develop for other platforms as well. If you want an example of my work, here's an app I've made with two friends of mine: https://play.google.com/store/apps/details?id=be.ana.nmct.multimania&ah=x2VF3LA-5S02ImMlV5LGyzX9o1o

I can't promise I'll be available instantly or at all times but I would be able to squeeze some time out of my schedule to help you guys out!
Title: Re: Android Developers?
Post by: sduensin on September 20, 2015, 05:59:31 pm
Do you have any experience working with git/github? The main issue that I'm dealing with it that I don't want to expose some of the server side API that I've written for VGC. I think with little effort I could rewrite some of it to store the API key in a file and just add it to .gitignore. I'd also need to create a few keys for developers to use.

Security through obscurity isn't a thing.  If it's just an API key you're hiding, someone could easily sniff that.  :-)
Title: Re: Android Developers?
Post by: gatimus on October 01, 2015, 12:34:48 am
I got a Diploma in Android app development earlier this year, and I'm always using github.
Title: Re: Android Developers?
Post by: vektor on October 02, 2015, 03:59:51 pm
Do you have any experience working with git/github? The main issue that I'm dealing with it that I don't want to expose some of the server side API that I've written for VGC. I think with little effort I could rewrite some of it to store the API key in a file and just add it to .gitignore. I'd also need to create a few keys for developers to use.

Security through obscurity isn't a thing.  If it's just an API key you're hiding, someone could easily sniff that.  :-)

Even worse, they have an api with keys, but they "hide" the key in a php file that is used by the app to forward requests to the actual api.  ;D
If I wanted to use your api I shouldn't even worry about sniffing a key that you'll disable.

Unfortunately once you expose an API on the web, you can only make it harder for people to use it, but there's no way to hide. You could replace JSON data with HTML scraping, but the performance will decrease dramatically.

Also, you should hash a password before sending it to the api, then check if the created hash matches the one in your database (unless you're storing clear passwords, in 2015).

Code: [Select]
http://vgcollect.com/api/api.php?action=validate&username=vektor&password=MYPASSWORDINCLEARTEXT
is not safe, use MD5 or SHA.