Posts

Showing posts from August, 2015

Hadoop Tutorial Material PDF

Image
Learn Hadoop Hi There, I'm learning hadoop these days at Hyderabad Orien IT. Here Are some pdf tutorials  that I found over different sites, which I kept into my drive and you can download this pdf. Inside Hadoop Material folder you'll find most of the pdf that you are looking for, I kept, sqoop, flume, HBase, Pig, Hive, Phoenix, Hadoop here is the my google drive link for hadoop material folder. just few MB's https://drive.google.com/open?id=0B6DVaY9UQtVjfjVacnVUVXRPRXNfVGZWU2hLUjJxbnhzODBzR05DQ2R0dUw0b3JRaVlOeVE

Color picker Example android

Here is an Example I have written  when I faced the  problems importing github project  into my android project. all u need to do is this, 1.  download project as zip file and extract the zip. 2.  Inside Extracted folder you'll see library folder. 3.  Copy that folder into your android Applications main folder where it contains all its gradle n all...  4.  open bulid.gradle(Module:app) inside that add dependencies like this, "compile project(':library')" 5.   update Settings.Gradle with include ':app', ':library' 6.  go to Tools>Android>Sync with Gradles and then it will show some error like build gradle not matching bla bla.... 7.  In your bulid.gradle(Module:liabrary) change  "compileSdkVersion,  buildToolsVersion, minSdkVersion, targetSdkVersion, versionCode , versionName " to as same as in your bulid.gradle(Module:app) . 8.Bingooo....Its Done...!!! In Below example I've added a color picker liabrary into