├── bin ├── classes.dex ├── CropImage.apk ├── resources.ap_ ├── classes │ └── com │ │ └── test │ │ └── cropimage │ │ ├── R.class │ │ ├── R$id.class │ │ ├── R$attr.class │ │ ├── R$menu.class │ │ ├── CropImage.class │ │ ├── R$dimen.class │ │ ├── R$layout.class │ │ ├── R$string.class │ │ ├── R$style.class │ │ ├── BuildConfig.class │ │ ├── R$drawable.class │ │ └── MainActivity.class ├── res │ └── crunch │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ └── drawable-xxhdpi │ │ └── ic_launcher.png ├── jarlist.cache ├── dexedLibs │ └── android-support-v4-29fe9a98bf92fdfb227ecbf6fbc51c8e.jar └── AndroidManifest.xml ├── ic_launcher-web.png ├── .settings ├── org.eclipse.core.resources.prefs └── org.eclipse.jdt.core.prefs ├── libs └── android-support-v4.jar ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── values-v11 │ └── styles.xml ├── menu │ └── main.xml ├── values-w820dp │ └── dimens.xml ├── values-v14 │ └── styles.xml └── layout │ └── activity_main.xml ├── gen └── com │ └── test │ └── cropimage │ ├── BuildConfig.java │ └── R.java ├── .classpath ├── project.properties ├── proguard-project.txt ├── .project ├── AndroidManifest.xml └── src └── com └── test └── cropimage ├── MainActivity.java └── CropImage.java /bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/bin/classes.dex -------------------------------------------------------------------------------- /bin/CropImage.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/bin/CropImage.apk -------------------------------------------------------------------------------- /bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/bin/resources.ap_ -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/classes/com/test/cropimage/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/bin/classes/com/test/cropimage/R.class -------------------------------------------------------------------------------- /bin/classes/com/test/cropimage/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/bin/classes/com/test/cropimage/R$id.class -------------------------------------------------------------------------------- /bin/classes/com/test/cropimage/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/bin/classes/com/test/cropimage/R$attr.class -------------------------------------------------------------------------------- /bin/classes/com/test/cropimage/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/bin/classes/com/test/cropimage/R$menu.class -------------------------------------------------------------------------------- /bin/classes/com/test/cropimage/CropImage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/bin/classes/com/test/cropimage/CropImage.class -------------------------------------------------------------------------------- /bin/classes/com/test/cropimage/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/bin/classes/com/test/cropimage/R$dimen.class -------------------------------------------------------------------------------- /bin/classes/com/test/cropimage/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/bin/classes/com/test/cropimage/R$layout.class -------------------------------------------------------------------------------- /bin/classes/com/test/cropimage/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/bin/classes/com/test/cropimage/R$string.class -------------------------------------------------------------------------------- /bin/classes/com/test/cropimage/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/bin/classes/com/test/cropimage/R$style.class -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/classes/com/test/cropimage/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/bin/classes/com/test/cropimage/BuildConfig.class -------------------------------------------------------------------------------- /bin/classes/com/test/cropimage/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/bin/classes/com/test/cropimage/R$drawable.class -------------------------------------------------------------------------------- /bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /bin/classes/com/test/cropimage/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/bin/classes/com/test/cropimage/MainActivity.class -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v4-29fe9a98bf92fdfb227ecbf6fbc51c8e.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shichaohui/CropImage/HEAD/bin/dexedLibs/android-support-v4-29fe9a98bf92fdfb227ecbf6fbc51c8e.jar -------------------------------------------------------------------------------- /gen/com/test/cropimage/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.test.cropimage; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Crop Image 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /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-22 15 | -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 |