├── .classpath ├── .gitignore ├── .project ├── AndroidManifest.xml ├── LICENSE ├── README.md ├── example ├── .classpath ├── .project ├── AndroidManifest.xml ├── libs │ └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi-v11 │ │ └── ic_stat_uploading.png │ ├── drawable-hdpi-v9 │ │ └── ic_stat_uploading.png │ ├── drawable-hdpi │ │ ├── ic_launcher.png │ │ └── ic_stat_uploading.png │ ├── drawable-ldpi-v11 │ │ └── ic_stat_uploading.png │ ├── drawable-ldpi-v9 │ │ └── ic_stat_uploading.png │ ├── drawable-ldpi │ │ ├── ic_launcher.png │ │ └── ic_stat_uploading.png │ ├── drawable-mdpi-v11 │ │ └── ic_stat_uploading.png │ ├── drawable-mdpi-v9 │ │ └── ic_stat_uploading.png │ ├── drawable-mdpi │ │ ├── ic_launcher.png │ │ └── ic_stat_uploading.png │ ├── drawable-xhdpi-v11 │ │ └── ic_stat_uploading.png │ ├── drawable-xhdpi-v9 │ │ └── ic_stat_uploading.png │ ├── drawable-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_stat_uploading.png │ ├── layout │ │ └── activity_main.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── values │ │ ├── s3config.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── readystatesoftware │ └── simpl3r │ └── example │ ├── MainActivity.java │ └── UploadService.java ├── libs ├── aws-android-sdk-1.4.3-core.jar └── aws-android-sdk-1.4.3-s3.jar ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── values │ ├── strings.xml │ └── styles.xml ├── simpl3r.png └── src └── com └── readystatesoftware └── simpl3r ├── UploadIterruptedException.java ├── Uploader.java └── utils ├── SharedPreferencesCompat.java └── SharedPreferencesUtils.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/.project -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/README.md -------------------------------------------------------------------------------- /example/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/.classpath -------------------------------------------------------------------------------- /example/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/.project -------------------------------------------------------------------------------- /example/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/AndroidManifest.xml -------------------------------------------------------------------------------- /example/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/libs/android-support-v4.jar -------------------------------------------------------------------------------- /example/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/proguard-project.txt -------------------------------------------------------------------------------- /example/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/project.properties -------------------------------------------------------------------------------- /example/res/drawable-hdpi-v11/ic_stat_uploading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/res/drawable-hdpi-v11/ic_stat_uploading.png -------------------------------------------------------------------------------- /example/res/drawable-hdpi-v9/ic_stat_uploading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/res/drawable-hdpi-v9/ic_stat_uploading.png -------------------------------------------------------------------------------- /example/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/res/drawable-hdpi/ic_stat_uploading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/res/drawable-hdpi/ic_stat_uploading.png -------------------------------------------------------------------------------- /example/res/drawable-ldpi-v11/ic_stat_uploading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/res/drawable-ldpi-v11/ic_stat_uploading.png -------------------------------------------------------------------------------- /example/res/drawable-ldpi-v9/ic_stat_uploading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/res/drawable-ldpi-v9/ic_stat_uploading.png -------------------------------------------------------------------------------- /example/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /example/res/drawable-ldpi/ic_stat_uploading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/res/drawable-ldpi/ic_stat_uploading.png -------------------------------------------------------------------------------- /example/res/drawable-mdpi-v11/ic_stat_uploading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/res/drawable-mdpi-v11/ic_stat_uploading.png -------------------------------------------------------------------------------- /example/res/drawable-mdpi-v9/ic_stat_uploading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/res/drawable-mdpi-v9/ic_stat_uploading.png -------------------------------------------------------------------------------- /example/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/res/drawable-mdpi/ic_stat_uploading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/res/drawable-mdpi/ic_stat_uploading.png -------------------------------------------------------------------------------- /example/res/drawable-xhdpi-v11/ic_stat_uploading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/res/drawable-xhdpi-v11/ic_stat_uploading.png -------------------------------------------------------------------------------- /example/res/drawable-xhdpi-v9/ic_stat_uploading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/res/drawable-xhdpi-v9/ic_stat_uploading.png -------------------------------------------------------------------------------- /example/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/res/drawable-xhdpi/ic_stat_uploading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/res/drawable-xhdpi/ic_stat_uploading.png -------------------------------------------------------------------------------- /example/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/res/layout/activity_main.xml -------------------------------------------------------------------------------- /example/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/res/values-v11/styles.xml -------------------------------------------------------------------------------- /example/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/res/values-v14/styles.xml -------------------------------------------------------------------------------- /example/res/values/s3config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/res/values/s3config.xml -------------------------------------------------------------------------------- /example/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/res/values/strings.xml -------------------------------------------------------------------------------- /example/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/res/values/styles.xml -------------------------------------------------------------------------------- /example/src/com/readystatesoftware/simpl3r/example/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/src/com/readystatesoftware/simpl3r/example/MainActivity.java -------------------------------------------------------------------------------- /example/src/com/readystatesoftware/simpl3r/example/UploadService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/example/src/com/readystatesoftware/simpl3r/example/UploadService.java -------------------------------------------------------------------------------- /libs/aws-android-sdk-1.4.3-core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/libs/aws-android-sdk-1.4.3-core.jar -------------------------------------------------------------------------------- /libs/aws-android-sdk-1.4.3-s3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/libs/aws-android-sdk-1.4.3-s3.jar -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/res/values-v11/styles.xml -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/res/values-v14/styles.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /simpl3r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/simpl3r.png -------------------------------------------------------------------------------- /src/com/readystatesoftware/simpl3r/UploadIterruptedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/src/com/readystatesoftware/simpl3r/UploadIterruptedException.java -------------------------------------------------------------------------------- /src/com/readystatesoftware/simpl3r/Uploader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/src/com/readystatesoftware/simpl3r/Uploader.java -------------------------------------------------------------------------------- /src/com/readystatesoftware/simpl3r/utils/SharedPreferencesCompat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/src/com/readystatesoftware/simpl3r/utils/SharedPreferencesCompat.java -------------------------------------------------------------------------------- /src/com/readystatesoftware/simpl3r/utils/SharedPreferencesUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/android-simpl3r/HEAD/src/com/readystatesoftware/simpl3r/utils/SharedPreferencesUtils.java --------------------------------------------------------------------------------