├── res ├── drawable │ └── icon.png ├── values │ └── strings.xml └── layout │ └── main.xml ├── .classpath ├── default.properties ├── .project ├── AndroidManifest.xml ├── src └── jp │ └── sharakova │ └── android │ └── service │ ├── ImageDownloadSampleActivity.java │ └── ImageDownloadService.java ├── proguard.cfg └── README /res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharakova/ImageDownloadService/master/res/drawable/icon.png -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Hello World, ImageDownloadSampleActivity! 4 | ImageDownload 5 | 6 | -------------------------------------------------------------------------------- /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /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=android-7 12 | -------------------------------------------------------------------------------- /res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 |