├── .gitattributes ├── .gitignore ├── MainActivity ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── bin │ ├── AndroidManifest.xml │ ├── MainActivity.apk │ ├── R.txt │ ├── classes.dex │ ├── classes │ │ └── com │ │ │ └── xckevin │ │ │ ├── androiddownloadcomponent │ │ │ ├── R$drawable.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ └── R.class │ │ │ └── download │ │ │ ├── AppContext.class │ │ │ ├── BuildConfig.class │ │ │ ├── R$attr.class │ │ │ ├── R$dimen.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$layout.class │ │ │ ├── R$menu.class │ │ │ ├── R$raw.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R.class │ │ │ ├── model │ │ │ └── GameInfoModel.class │ │ │ ├── ui │ │ │ ├── IDCreate.class │ │ │ ├── ListActivity$1.class │ │ │ ├── ListActivity.class │ │ │ ├── ListAdapter$1.class │ │ │ ├── ListAdapter$2.class │ │ │ ├── ListAdapter$ViewHolder.class │ │ │ ├── ListAdapter.class │ │ │ └── MainActivity.class │ │ │ └── util │ │ │ └── SourceProvicer.class │ ├── dexedLibs │ │ ├── afinal_0.5.1_bin-bcdf7a8cb36c2d22db2af93ccc728359.jar │ │ ├── android-support-v4-2df5435911296a354a1b7c19d9ff9857.jar │ │ └── lib_download-821b26c3c1e1d4f4ea62161b71c042e5.jar │ ├── jarlist.cache │ ├── res │ │ └── crunch │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ └── drawable-xxhdpi │ │ │ └── ic_launcher.png │ └── resources.ap_ ├── gen │ └── com │ │ └── xckevin │ │ ├── androiddownloadcomponent │ │ └── R.java │ │ └── download │ │ ├── BuildConfig.java │ │ └── R.java ├── ic_launcher-web.png ├── libs │ ├── afinal_0.5.1_bin.jar │ └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ ├── activity_list.xml │ │ ├── activity_main.xml │ │ └── item_download.xml │ ├── menu │ │ └── main.xml │ ├── raw │ │ └── gamehelper.db │ ├── values-sw600dp │ │ └── dimens.xml │ ├── values-sw720dp-land │ │ └── dimens.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── xckevin │ └── download │ ├── AppContext.java │ ├── model │ └── GameInfoModel.java │ ├── ui │ ├── IDCreate.java │ ├── ListActivity.java │ ├── ListAdapter.java │ └── MainActivity.java │ └── util │ └── SourceProvicer.java ├── README.md └── lib_download ├── .classpath ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── bin ├── AndroidManifest.xml ├── R.txt ├── classes │ └── com │ │ └── xckevin │ │ ├── androiddownloadcomponent │ │ ├── BuildConfig.class │ │ ├── R$attr.class │ │ ├── R$drawable.class │ │ ├── R$string.class │ │ ├── R$style.class │ │ └── R.class │ │ └── download │ │ ├── DownloadConfig$Builder.class │ │ ├── DownloadConfig.class │ │ ├── DownloadListener.class │ │ ├── DownloadManager$1.class │ │ ├── DownloadManager$10.class │ │ ├── DownloadManager$11.class │ │ ├── DownloadManager$2.class │ │ ├── DownloadManager$3.class │ │ ├── DownloadManager$4.class │ │ ├── DownloadManager$5.class │ │ ├── DownloadManager$6.class │ │ ├── DownloadManager$7.class │ │ ├── DownloadManager$8.class │ │ ├── DownloadManager$9.class │ │ ├── DownloadManager.class │ │ ├── DownloadObserver.class │ │ ├── DownloadOperator.class │ │ ├── DownloadProvider.class │ │ ├── DownloadTask.class │ │ ├── DownloadTaskIDCreator.class │ │ ├── Env.class │ │ ├── MD5DownloadTaskIDCreator.class │ │ ├── SqlLiteDownloadProvider.class │ │ └── util │ │ ├── FileUtil.class │ │ ├── MD5.class │ │ └── StringUtil.class ├── lib_download.jar └── res │ └── crunch │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ └── ic_launcher.png │ └── drawable-xxhdpi │ └── ic_launcher.png ├── gen └── com │ └── xckevin │ └── androiddownloadcomponent │ ├── BuildConfig.java │ └── R.java ├── ic_launcher-web.png ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── values │ ├── strings.xml │ └── styles.xml └── src └── com └── xckevin └── download ├── DownloadConfig.java ├── DownloadListener.java ├── DownloadManager.java ├── DownloadObserver.java ├── DownloadOperator.java ├── DownloadProvider.java ├── DownloadTask.java ├── DownloadTaskIDCreator.java ├── Env.java ├── MD5DownloadTaskIDCreator.java ├── SqlLiteDownloadProvider.java └── util ├── FileUtil.java ├── MD5.java └── StringUtil.java /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # ========================= 18 | # Operating System Files 19 | # ========================= 20 | 21 | # OSX 22 | # ========================= 23 | 24 | .DS_Store 25 | .AppleDouble 26 | .LSOverride 27 | 28 | # Icon must ends with two \r. 29 | Icon 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear on external disk 35 | .Spotlight-V100 36 | .Trashes 37 | -------------------------------------------------------------------------------- /MainActivity/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /MainActivity/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainActivity 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /MainActivity/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /MainActivity/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 19 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /MainActivity/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 19 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /MainActivity/bin/MainActivity.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/MainActivity.apk -------------------------------------------------------------------------------- /MainActivity/bin/R.txt: -------------------------------------------------------------------------------- 1 | int dimen activity_horizontal_margin 0x7f070000 2 | int dimen activity_vertical_margin 0x7f070001 3 | int drawable ic_launcher 0x7f020000 4 | int id action_settings 0x7f09000e 5 | int id delete 0x7f090005 6 | int id download_add_Btn 0x7f090000 7 | int id download_list_LV 0x7f090001 8 | int id item_action_Layout 0x7f090007 9 | int id item_info_Layout 0x7f09000a 10 | int id item_name 0x7f09000b 11 | int id item_progress 0x7f09000c 12 | int id item_speed 0x7f09000d 13 | int id item_start 0x7f090008 14 | int id item_stop 0x7f090009 15 | int id pause 0x7f090004 16 | int id progressbar 0x7f090002 17 | int id start 0x7f090003 18 | int id state 0x7f090006 19 | int layout activity_list 0x7f030000 20 | int layout activity_main 0x7f030001 21 | int layout item_download 0x7f030002 22 | int menu main 0x7f080000 23 | int raw gamehelper 0x7f040000 24 | int string action_settings 0x7f050001 25 | int string app_name 0x7f050000 26 | int string hello_world 0x7f050002 27 | int style AppBaseTheme 0x7f060000 28 | int style AppTheme 0x7f060001 29 | int style btn_download_action 0x7f060002 30 | -------------------------------------------------------------------------------- /MainActivity/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes.dex -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/androiddownloadcomponent/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/androiddownloadcomponent/R$drawable.class -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/androiddownloadcomponent/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/androiddownloadcomponent/R$string.class -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/androiddownloadcomponent/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/androiddownloadcomponent/R$style.class -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/androiddownloadcomponent/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/androiddownloadcomponent/R.class -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/download/AppContext.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/download/AppContext.class -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/download/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/download/BuildConfig.class -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/download/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/download/R$attr.class -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/download/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/download/R$dimen.class -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/download/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/download/R$drawable.class -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/download/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/download/R$id.class -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/download/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/download/R$layout.class -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/download/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/download/R$menu.class -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/download/R$raw.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/download/R$raw.class -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/download/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/download/R$string.class -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/download/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/download/R$style.class -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/download/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/download/R.class -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/download/model/GameInfoModel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/download/model/GameInfoModel.class -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/download/ui/IDCreate.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/download/ui/IDCreate.class -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/download/ui/ListActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/download/ui/ListActivity$1.class -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/download/ui/ListActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/download/ui/ListActivity.class -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/download/ui/ListAdapter$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/download/ui/ListAdapter$1.class -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/download/ui/ListAdapter$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/download/ui/ListAdapter$2.class -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/download/ui/ListAdapter$ViewHolder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/download/ui/ListAdapter$ViewHolder.class -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/download/ui/ListAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/download/ui/ListAdapter.class -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/download/ui/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/download/ui/MainActivity.class -------------------------------------------------------------------------------- /MainActivity/bin/classes/com/xckevin/download/util/SourceProvicer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/classes/com/xckevin/download/util/SourceProvicer.class -------------------------------------------------------------------------------- /MainActivity/bin/dexedLibs/afinal_0.5.1_bin-bcdf7a8cb36c2d22db2af93ccc728359.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/dexedLibs/afinal_0.5.1_bin-bcdf7a8cb36c2d22db2af93ccc728359.jar -------------------------------------------------------------------------------- /MainActivity/bin/dexedLibs/android-support-v4-2df5435911296a354a1b7c19d9ff9857.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/dexedLibs/android-support-v4-2df5435911296a354a1b7c19d9ff9857.jar -------------------------------------------------------------------------------- /MainActivity/bin/dexedLibs/lib_download-821b26c3c1e1d4f4ea62161b71c042e5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/dexedLibs/lib_download-821b26c3c1e1d4f4ea62161b71c042e5.jar -------------------------------------------------------------------------------- /MainActivity/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /MainActivity/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MainActivity/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MainActivity/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MainActivity/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MainActivity/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/bin/resources.ap_ -------------------------------------------------------------------------------- /MainActivity/gen/com/xckevin/androiddownloadcomponent/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | package com.xckevin.androiddownloadcomponent; 8 | 9 | public final class R { 10 | public static final class drawable { 11 | public static final int ic_launcher = 0x7f020000; 12 | } 13 | public static final class string { 14 | public static final int app_name = 0x7f050000; 15 | } 16 | public static final class style { 17 | public static final int AppBaseTheme = 0x7f060000; 18 | public static final int AppTheme = 0x7f060001; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /MainActivity/gen/com/xckevin/download/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.xckevin.download; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /MainActivity/gen/com/xckevin/download/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | 8 | package com.xckevin.download; 9 | 10 | public final class R { 11 | public static final class attr { 12 | } 13 | public static final class dimen { 14 | /** Default screen margins, per the Android Design guidelines. 15 | 16 | Customize dimensions originally defined in res/values/dimens.xml (such as 17 | screen margins) for sw720dp devices (e.g. 10" tablets) in landscape here. 18 | 19 | */ 20 | public static final int activity_horizontal_margin=0x7f070000; 21 | public static final int activity_vertical_margin=0x7f070001; 22 | } 23 | public static final class drawable { 24 | public static final int ic_launcher=0x7f020000; 25 | } 26 | public static final class id { 27 | public static final int action_settings=0x7f09000e; 28 | public static final int delete=0x7f090005; 29 | public static final int download_add_Btn=0x7f090000; 30 | public static final int download_list_LV=0x7f090001; 31 | public static final int item_action_Layout=0x7f090007; 32 | public static final int item_info_Layout=0x7f09000a; 33 | public static final int item_name=0x7f09000b; 34 | public static final int item_progress=0x7f09000c; 35 | public static final int item_speed=0x7f09000d; 36 | public static final int item_start=0x7f090008; 37 | public static final int item_stop=0x7f090009; 38 | public static final int pause=0x7f090004; 39 | public static final int progressbar=0x7f090002; 40 | public static final int start=0x7f090003; 41 | public static final int state=0x7f090006; 42 | } 43 | public static final class layout { 44 | public static final int activity_list=0x7f030000; 45 | public static final int activity_main=0x7f030001; 46 | public static final int item_download=0x7f030002; 47 | } 48 | public static final class menu { 49 | public static final int main=0x7f080000; 50 | } 51 | public static final class raw { 52 | public static final int gamehelper=0x7f040000; 53 | } 54 | public static final class string { 55 | public static final int action_settings=0x7f050001; 56 | public static final int app_name=0x7f050000; 57 | public static final int hello_world=0x7f050002; 58 | } 59 | public static final class style { 60 | /** 61 | Base application theme, dependent on API level. This theme is replaced 62 | by AppBaseTheme from res/values-vXX/styles.xml on newer devices. 63 | 64 | 65 | Theme customizations available in newer API levels can go in 66 | res/values-vXX/styles.xml, while customizations related to 67 | backward-compatibility can go here. 68 | 69 | 70 | Base application theme for API 11+. This theme completely replaces 71 | AppBaseTheme from res/values/styles.xml on API 11+ devices. 72 | 73 | API 11 theme customizations can go here. 74 | 75 | Base application theme for API 14+. This theme completely replaces 76 | AppBaseTheme from BOTH res/values/styles.xml and 77 | res/values-v11/styles.xml on API 14+ devices. 78 | 79 | API 14 theme customizations can go here. 80 | 81 | Base application theme, dependent on API level. This theme is replaced 82 | by AppBaseTheme from res/values-vXX/styles.xml on newer devices. 83 | 84 | 85 | Theme customizations available in newer API levels can go in 86 | res/values-vXX/styles.xml, while customizations related to 87 | backward-compatibility can go here. 88 | 89 | 90 | Base application theme for API 11+. This theme completely replaces 91 | AppBaseTheme from res/values/styles.xml on API 11+ devices. 92 | 93 | API 11 theme customizations can go here. 94 | 95 | Base application theme for API 14+. This theme completely replaces 96 | AppBaseTheme from BOTH res/values/styles.xml and 97 | res/values-v11/styles.xml on API 14+ devices. 98 | 99 | API 14 theme customizations can go here. 100 | */ 101 | public static final int AppBaseTheme=0x7f060000; 102 | /** Application theme. 103 | All customizations that are NOT specific to a particular API-level can go here. 104 | Application theme. 105 | All customizations that are NOT specific to a particular API-level can go here. 106 | */ 107 | public static final int AppTheme=0x7f060001; 108 | public static final int btn_download_action=0x7f060002; 109 | } 110 | } 111 | -------------------------------------------------------------------------------- /MainActivity/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/ic_launcher-web.png -------------------------------------------------------------------------------- /MainActivity/libs/afinal_0.5.1_bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/libs/afinal_0.5.1_bin.jar -------------------------------------------------------------------------------- /MainActivity/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/libs/android-support-v4.jar -------------------------------------------------------------------------------- /MainActivity/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /MainActivity/project.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 edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-20 15 | android.library.reference.1=../lib_download 16 | -------------------------------------------------------------------------------- /MainActivity/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MainActivity/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MainActivity/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MainActivity/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Houny/Downloader/f2ca96fe93e0061bb44ec7aefd7e85e8005b6b02/MainActivity/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MainActivity/res/layout/activity_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 |