├── .gitignore ├── AndroidManifest.xml ├── LICENSE ├── Makefile ├── README.md ├── ant.properties ├── checkstyle └── android_checks.xml ├── custom_rules.xml ├── git-pre-commit ├── libs ├── android-support-v4.jar ├── armeabi │ └── libbspatch.so └── umeng_sdk.jar ├── project.properties ├── release.keystore ├── res ├── drawable-hdpi │ ├── ic_launcher.png │ ├── umeng_update_btn_check_off_focused_holo_light.png │ ├── umeng_update_btn_check_off_holo_light.png │ ├── umeng_update_btn_check_off_pressed_holo_light.png │ ├── umeng_update_btn_check_on_focused_holo_light.png │ ├── umeng_update_btn_check_on_holo_light.png │ ├── umeng_update_btn_check_on_pressed_holo_light.png │ ├── umeng_update_close_bg_normal.png │ └── umeng_update_close_bg_tap.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── drawable │ ├── umeng_common_gradient_green.xml │ ├── umeng_common_gradient_orange.xml │ ├── umeng_common_gradient_red.xml │ ├── umeng_update_button_cancel_bg_focused.xml │ ├── umeng_update_button_cancel_bg_normal.xml │ ├── umeng_update_button_cancel_bg_selector.xml │ ├── umeng_update_button_cancel_bg_tap.xml │ ├── umeng_update_button_check_selector.xml │ ├── umeng_update_button_close_bg_selector.xml │ ├── umeng_update_button_ok_bg_focused.xml │ ├── umeng_update_button_ok_bg_normal.xml │ ├── umeng_update_button_ok_bg_selector.xml │ ├── umeng_update_button_ok_bg_tap.xml │ ├── umeng_update_dialog_bg.xml │ ├── umeng_update_title_bg.xml │ └── umeng_update_wifi_disable.png ├── layout-v9 │ └── umeng_common_download_notification.xml ├── layout │ ├── activity_main.xml │ ├── umeng_common_download_notification.xml │ └── umeng_update_dialog.xml ├── menu │ └── main.xml ├── values-sw600dp │ └── dimens.xml ├── values-sw720dp-land │ └── dimens.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml ├── values-zh-rCN │ ├── strings.xml │ ├── umeng_common_strings.xml │ └── umeng_update_string.xml └── values │ ├── dimens.xml │ ├── strings.xml │ ├── styles.xml │ ├── umeng_common_strings.xml │ └── umeng_update_string.xml └── src └── io └── github └── sinkcup └── ant └── MainActivity.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/README.md -------------------------------------------------------------------------------- /ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/ant.properties -------------------------------------------------------------------------------- /checkstyle/android_checks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/checkstyle/android_checks.xml -------------------------------------------------------------------------------- /custom_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/custom_rules.xml -------------------------------------------------------------------------------- /git-pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/git-pre-commit -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /libs/armeabi/libbspatch.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/libs/armeabi/libbspatch.so -------------------------------------------------------------------------------- /libs/umeng_sdk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/libs/umeng_sdk.jar -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/project.properties -------------------------------------------------------------------------------- /release.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/release.keystore -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/umeng_update_btn_check_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable-hdpi/umeng_update_btn_check_off_focused_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/umeng_update_btn_check_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable-hdpi/umeng_update_btn_check_off_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/umeng_update_btn_check_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable-hdpi/umeng_update_btn_check_off_pressed_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/umeng_update_btn_check_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable-hdpi/umeng_update_btn_check_on_focused_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/umeng_update_btn_check_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable-hdpi/umeng_update_btn_check_on_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/umeng_update_btn_check_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable-hdpi/umeng_update_btn_check_on_pressed_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/umeng_update_close_bg_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable-hdpi/umeng_update_close_bg_normal.png -------------------------------------------------------------------------------- /res/drawable-hdpi/umeng_update_close_bg_tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable-hdpi/umeng_update_close_bg_tap.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable/umeng_common_gradient_green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable/umeng_common_gradient_green.xml -------------------------------------------------------------------------------- /res/drawable/umeng_common_gradient_orange.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable/umeng_common_gradient_orange.xml -------------------------------------------------------------------------------- /res/drawable/umeng_common_gradient_red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable/umeng_common_gradient_red.xml -------------------------------------------------------------------------------- /res/drawable/umeng_update_button_cancel_bg_focused.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable/umeng_update_button_cancel_bg_focused.xml -------------------------------------------------------------------------------- /res/drawable/umeng_update_button_cancel_bg_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable/umeng_update_button_cancel_bg_normal.xml -------------------------------------------------------------------------------- /res/drawable/umeng_update_button_cancel_bg_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable/umeng_update_button_cancel_bg_selector.xml -------------------------------------------------------------------------------- /res/drawable/umeng_update_button_cancel_bg_tap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable/umeng_update_button_cancel_bg_tap.xml -------------------------------------------------------------------------------- /res/drawable/umeng_update_button_check_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable/umeng_update_button_check_selector.xml -------------------------------------------------------------------------------- /res/drawable/umeng_update_button_close_bg_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable/umeng_update_button_close_bg_selector.xml -------------------------------------------------------------------------------- /res/drawable/umeng_update_button_ok_bg_focused.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable/umeng_update_button_ok_bg_focused.xml -------------------------------------------------------------------------------- /res/drawable/umeng_update_button_ok_bg_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable/umeng_update_button_ok_bg_normal.xml -------------------------------------------------------------------------------- /res/drawable/umeng_update_button_ok_bg_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable/umeng_update_button_ok_bg_selector.xml -------------------------------------------------------------------------------- /res/drawable/umeng_update_button_ok_bg_tap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable/umeng_update_button_ok_bg_tap.xml -------------------------------------------------------------------------------- /res/drawable/umeng_update_dialog_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable/umeng_update_dialog_bg.xml -------------------------------------------------------------------------------- /res/drawable/umeng_update_title_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable/umeng_update_title_bg.xml -------------------------------------------------------------------------------- /res/drawable/umeng_update_wifi_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/drawable/umeng_update_wifi_disable.png -------------------------------------------------------------------------------- /res/layout-v9/umeng_common_download_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/layout-v9/umeng_common_download_notification.xml -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/layout/activity_main.xml -------------------------------------------------------------------------------- /res/layout/umeng_common_download_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/layout/umeng_common_download_notification.xml -------------------------------------------------------------------------------- /res/layout/umeng_update_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/layout/umeng_update_dialog.xml -------------------------------------------------------------------------------- /res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/menu/main.xml -------------------------------------------------------------------------------- /res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/values-v11/styles.xml -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/values-v14/styles.xml -------------------------------------------------------------------------------- /res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /res/values-zh-rCN/umeng_common_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/values-zh-rCN/umeng_common_strings.xml -------------------------------------------------------------------------------- /res/values-zh-rCN/umeng_update_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/values-zh-rCN/umeng_update_string.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /res/values/umeng_common_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/values/umeng_common_strings.xml -------------------------------------------------------------------------------- /res/values/umeng_update_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/res/values/umeng_update_string.xml -------------------------------------------------------------------------------- /src/io/github/sinkcup/ant/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaunthegeek/AntDemo/HEAD/src/io/github/sinkcup/ant/MainActivity.java --------------------------------------------------------------------------------