├── .idea ├── .name ├── dictionaries │ └── mchang.xml ├── ant.xml ├── encodings.xml ├── vcs.xml ├── copyright │ ├── profiles_settings.xml │ └── Simplified_BSD.xml ├── libraries │ ├── Actionbar.xml │ └── Apache_HTTP.xml ├── modules.xml ├── compiler.xml ├── misc.xml └── uiDesigner.xml ├── .gitignore ├── icons ├── icon.png ├── slr.png ├── photos.png ├── icon_114.png ├── icon_512.png ├── camera_lens.png ├── camera_lens_114.png ├── camera_lens_512.png └── camera_lens_grey.png ├── libs ├── httpcore-4.1.jar ├── httpmime-4.1.jar ├── httpclient-4.1.jar ├── commons-codec-1.4.jar ├── commons-logging-1.1.1.jar └── httpclient-cache-4.1.jar ├── res ├── drawable │ └── stub.png ├── drawable-hdpi │ ├── .DS_Store │ ├── icon.png │ ├── ic_menu_home.png │ ├── ic_menu_login.png │ ├── ic_menu_star.png │ ├── ic_title_home.png │ ├── ic_menu_camera.png │ ├── ic_menu_compose.png │ ├── ic_menu_delete.png │ ├── ic_menu_gallery.png │ ├── ic_menu_refresh.png │ ├── ic_title_camera.png │ ├── ic_menu_allfriends.png │ ├── ic_menu_slideshow.png │ ├── ic_title_refresh.png │ └── ic_menu_preferences.png ├── drawable-ldpi │ ├── icon.png │ ├── ic_menu_home.png │ ├── ic_menu_login.png │ ├── ic_menu_star.png │ ├── ic_title_home.png │ ├── ic_menu_camera.png │ ├── ic_menu_compose.png │ ├── ic_menu_delete.png │ ├── ic_menu_gallery.png │ ├── ic_menu_refresh.png │ ├── ic_title_camera.png │ ├── ic_menu_allfriends.png │ ├── ic_menu_slideshow.png │ ├── ic_title_refresh.png │ └── ic_menu_preferences.png ├── drawable-mdpi │ ├── .DS_Store │ ├── icon.png │ ├── ic_menu_home.png │ ├── ic_menu_login.png │ ├── ic_menu_star.png │ ├── ic_title_home.png │ ├── ic_menu_camera.png │ ├── ic_menu_compose.png │ ├── ic_menu_delete.png │ ├── ic_menu_gallery.png │ ├── ic_menu_refresh.png │ ├── ic_title_camera.png │ ├── ic_menu_allfriends.png │ ├── ic_menu_slideshow.png │ ├── ic_title_refresh.png │ └── ic_menu_preferences.png ├── menu │ └── take_picture_menu.xml ├── layout │ ├── image_list.xml │ ├── image_list_item.xml │ ├── login.xml │ ├── image_grid.xml │ ├── take_picture.xml │ └── dashboard_home.xml └── values │ ├── strings.xml │ ├── dimens.xml │ ├── styles.xml │ └── colors.xml ├── market └── screenshots │ ├── 1.png │ ├── 2.png │ └── 3.png ├── default.properties ├── local.properties ├── README.md ├── proguard.cfg ├── AndroidManifest.xml ├── android-instagram.iml ├── src └── org │ └── acmelab │ └── andgram │ ├── Comment.java │ ├── InstagramImage.java │ ├── SerializedCookie.java │ ├── LazyGridAdapter.java │ ├── DashboardActivity.java │ ├── LazyAdapter.java │ ├── LoginActivity.java │ ├── ImageLoader.java │ ├── ImageGridActivity.java │ ├── Utils.java │ ├── ImageListActivity.java │ └── TakePictureActivity.java └── gen ├── org └── acmelab │ └── andgram │ └── R.java └── com └── markupartist └── android └── widget └── actionbar └── R.java /.idea/.name: -------------------------------------------------------------------------------- 1 | android-instagram -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | out/ 2 | .idea/workspace.xml 3 | tmp/ -------------------------------------------------------------------------------- /icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/icons/icon.png -------------------------------------------------------------------------------- /icons/slr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/icons/slr.png -------------------------------------------------------------------------------- /icons/photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/icons/photos.png -------------------------------------------------------------------------------- /icons/icon_114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/icons/icon_114.png -------------------------------------------------------------------------------- /icons/icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/icons/icon_512.png -------------------------------------------------------------------------------- /icons/camera_lens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/icons/camera_lens.png -------------------------------------------------------------------------------- /libs/httpcore-4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/libs/httpcore-4.1.jar -------------------------------------------------------------------------------- /libs/httpmime-4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/libs/httpmime-4.1.jar -------------------------------------------------------------------------------- /res/drawable/stub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable/stub.png -------------------------------------------------------------------------------- /icons/camera_lens_114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/icons/camera_lens_114.png -------------------------------------------------------------------------------- /icons/camera_lens_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/icons/camera_lens_512.png -------------------------------------------------------------------------------- /libs/httpclient-4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/libs/httpclient-4.1.jar -------------------------------------------------------------------------------- /market/screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/market/screenshots/1.png -------------------------------------------------------------------------------- /market/screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/market/screenshots/2.png -------------------------------------------------------------------------------- /market/screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/market/screenshots/3.png -------------------------------------------------------------------------------- /icons/camera_lens_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/icons/camera_lens_grey.png -------------------------------------------------------------------------------- /libs/commons-codec-1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/libs/commons-codec-1.4.jar -------------------------------------------------------------------------------- /res/drawable-hdpi/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-hdpi/.DS_Store -------------------------------------------------------------------------------- /res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /res/drawable-mdpi/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-mdpi/.DS_Store -------------------------------------------------------------------------------- /res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /.idea/dictionaries/mchang.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /libs/commons-logging-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/libs/commons-logging-1.1.1.jar -------------------------------------------------------------------------------- /libs/httpclient-cache-4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/libs/httpclient-cache-4.1.jar -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-hdpi/ic_menu_home.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-hdpi/ic_menu_login.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-hdpi/ic_menu_star.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_title_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-hdpi/ic_title_home.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-ldpi/ic_menu_home.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-ldpi/ic_menu_login.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-ldpi/ic_menu_star.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_title_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-ldpi/ic_title_home.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-mdpi/ic_menu_home.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-mdpi/ic_menu_login.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-mdpi/ic_menu_star.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_title_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-mdpi/ic_title_home.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-hdpi/ic_menu_camera.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-hdpi/ic_menu_compose.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-hdpi/ic_menu_delete.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-hdpi/ic_menu_gallery.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-hdpi/ic_menu_refresh.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_title_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-hdpi/ic_title_camera.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-ldpi/ic_menu_camera.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-ldpi/ic_menu_compose.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-ldpi/ic_menu_delete.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-ldpi/ic_menu_gallery.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-ldpi/ic_menu_refresh.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_title_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-ldpi/ic_title_camera.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-mdpi/ic_menu_camera.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-mdpi/ic_menu_compose.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-mdpi/ic_menu_delete.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-mdpi/ic_menu_gallery.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-mdpi/ic_menu_refresh.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_title_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-mdpi/ic_title_camera.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_allfriends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-hdpi/ic_menu_allfriends.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_slideshow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-hdpi/ic_menu_slideshow.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_title_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-hdpi/ic_title_refresh.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_allfriends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-ldpi/ic_menu_allfriends.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_slideshow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-ldpi/ic_menu_slideshow.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_title_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-ldpi/ic_title_refresh.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_allfriends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-mdpi/ic_menu_allfriends.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_slideshow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-mdpi/ic_menu_slideshow.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_title_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-mdpi/ic_title_refresh.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-hdpi/ic_menu_preferences.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-ldpi/ic_menu_preferences.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markchang/android-instagram/HEAD/res/drawable-mdpi/ic_menu_preferences.png -------------------------------------------------------------------------------- /.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /.idea/libraries/Actionbar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /res/menu/take_picture_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | -------------------------------------------------------------------------------- /.idea/libraries/Apache_HTTP.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:7 12 | -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must *NOT* be checked in Version Control Systems, 5 | # as it contains information specific to your local configuration. 6 | 7 | # location of the SDK. This is only used by Ant 8 | # For customization when using a Version Control System, please read the 9 | # header note. 10 | sdk.dir=/Users/mchang/Code/android-sdk 11 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Android Instagram (Andgram) 2 | =========================== 3 | 4 | This is an Instagram client for Android. It is a total and utter hack. 5 | Please do not look too closely at the code else you will feel sick and your 6 | eyes will likely bleed. 7 | 8 | No, it won't let you create an Instagram account. No, Instagram won't let 9 | you have images that are non-square larger than 612x612. 10 | 11 | If you want changes, fork the repository and send a pull request. 12 | 13 | Resources: 14 | 15 | * https://github.com/mislav/instagram/wiki 16 | * http://instagram.com/developer/ 17 | 18 | -------------------------------------------------------------------------------- /res/layout/image_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | 17 | 18 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /proguard.cfg: -------------------------------------------------------------------------------- 1 | -optimizationpasses 5 2 | -dontusemixedcaseclassnames 3 | -dontskipnonpubliclibraryclasses 4 | -dontpreverify 5 | -verbose 6 | -optimizations !code/simplification/arithmetic,!field/*,!class/merging/* 7 | 8 | -keep public class * extends android.app.Activity 9 | -keep public class * extends android.app.Application 10 | -keep public class * extends android.app.Service 11 | -keep public class * extends android.content.BroadcastReceiver 12 | -keep public class * extends android.content.ContentProvider 13 | -keep public class com.android.vending.licensing.ILicensingService 14 | 15 | -keepclasseswithmembernames class * { 16 | native ; 17 | } 18 | 19 | -keepclasseswithmembernames class * { 20 | public (android.content.Context, android.util.AttributeSet); 21 | } 22 | 23 | -keepclasseswithmembernames class * { 24 | public (android.content.Context, android.util.AttributeSet, int); 25 | } 26 | 27 | -keepclassmembers enum * { 28 | public static **[] values(); 29 | public static ** valueOf(java.lang.String); 30 | } 31 | 32 | -keep class * implements android.os.Parcelable { 33 | public static final android.os.Parcelable$Creator *; 34 | } 35 | -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Andgram 4 | Andgram v1.1 5 | 6 | Credentials 7 | Refresh 8 | Preferences 9 | Clear 10 | 11 | Take Picture 12 | Choose... 13 | Upload 14 | Comment 15 | Taken by Andgram 16 | Feed 17 | Popular 18 | Your feed 19 | Open gallery 20 | empty 21 | 22 | Dashboard 23 | Login 24 | 25 | 26 | This application does not support the creation of new Instagram accounts. 27 | That portion of the undocumented API has not yet been reverse-engineered. 28 | You will need to use an iOS device (such as an iPhone) in order to create 29 | an account. 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /res/layout/image_list_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 14 | 23 | 30 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 9 | 10 | 11 | 27 | 28 | http://www.w3.org/1999/xhtml 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /.idea/copyright/Simplified_BSD.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 28 | 29 | 30 | 6dip 31 | 45dip 32 | 90dip 33 | 14sp 34 | 18sp 35 | 22sp 36 | 37 | -------------------------------------------------------------------------------- /res/layout/login.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 15 | 22 | 29 | 35 | 40 | 46 | 52 |