I hereby claim:
- I am esteveaguilera on github.
- I am esteve (https://keybase.io/esteve) on keybase.
- I have a public key ASC7SGtk63OOWGCnhXXcB2_jYNI5xYlMsJZCoK34A7sHwwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # Download the android sdk | |
| wget http://dl.google.com/android/android-sdk_r24.2-linux.tgz | |
| # Uncompress the donwloaded file | |
| tar -xvf android-sdk_r24.2-linux.tgz | |
| # Enter the uncompressed folder | |
| cd android-sdk-linux/tools | |
| # Install all sdk packages |
| <?php | |
| if ( isset( $_SERVER['HTTP_USER_AGENT'] ) ) { | |
| $iOS = stripos( $_SERVER['HTTP_USER_AGENT'], "iOS" ); | |
| $iPod = stripos( $_SERVER['HTTP_USER_AGENT'], "iPod" ); | |
| $iPhone = stripos( $_SERVER['HTTP_USER_AGENT'], "iPhone" ); | |
| $iPad = stripos( $_SERVER['HTTP_USER_AGENT'], "iPad" ); | |
| $Android = stripos( $_SERVER['HTTP_USER_AGENT'], "Android" ); | |
| } | |
| if ( $iOS || $iPod || $iPhone || $iPad ) { | |
| header( 'Location: http://ios_web' ); |
| import android.content.Context; | |
| import android.util.Log; | |
| import android.view.LayoutInflater; | |
| import android.view.View; | |
| import android.view.ViewGroup; | |
| import android.widget.BaseAdapter; | |
| import android.widget.Filter; | |
| import android.widget.Filterable; | |
| import android.widget.TextView; |