├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── gradle.xml ├── libraries │ ├── auto_common_0_3.xml │ ├── auto_service_1_0_rc2.xml │ ├── espresso_core_2_2_2.xml │ ├── espresso_idling_resource_2_2_2.xml │ ├── exposed_instrumentation_api_publish_0_5.xml │ ├── guava_18_0.xml │ ├── hamcrest_core_1_3.xml │ ├── hamcrest_integration_1_3.xml │ ├── hamcrest_library_1_3.xml │ ├── javapoet_1_3_0.xml │ ├── javawriter_2_1_1.xml │ ├── javax_annotation_api_1_2.xml │ ├── javax_inject_1.xml │ ├── jsr305_2_0_1.xml │ ├── junit_4_12.xml │ ├── rules_0_5.xml │ └── runner_0_5.xml ├── misc.xml ├── modules.xml └── runConfigurations.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── github │ │ └── florent37 │ │ └── asyncterractor │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── github │ │ │ └── florent37 │ │ │ └── asyncterractor │ │ │ ├── MainActivity.java │ │ │ ├── MainPresenter.java │ │ │ ├── MainPresenterImpl.java │ │ │ └── MainView.java │ └── res │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── github │ └── florent37 │ └── asyncterractor │ └── ExampleUnitTest.java ├── asyncterractor-compiler ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ └── java │ └── com │ └── github │ └── florent37 │ └── holyfragment │ └── processor │ ├── AsyncterractorProcessor.java │ └── Holder.java ├── asyncterractor ├── .gitignore ├── build.gradle └── src │ └── main │ └── java │ └── com │ └── github │ └── florent37 │ └── asyncterractor │ └── annotations │ ├── Ignore.java │ ├── OnThread.java │ └── OnUiThread.java ├── gradle.properties ├── gradle ├── bintray-android-v1.gradle ├── bintray-java-v1.gradle ├── install-v1.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/libraries/auto_common_0_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/.idea/libraries/auto_common_0_3.xml -------------------------------------------------------------------------------- /.idea/libraries/auto_service_1_0_rc2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/.idea/libraries/auto_service_1_0_rc2.xml -------------------------------------------------------------------------------- /.idea/libraries/espresso_core_2_2_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/.idea/libraries/espresso_core_2_2_2.xml -------------------------------------------------------------------------------- /.idea/libraries/espresso_idling_resource_2_2_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/.idea/libraries/espresso_idling_resource_2_2_2.xml -------------------------------------------------------------------------------- /.idea/libraries/exposed_instrumentation_api_publish_0_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/.idea/libraries/exposed_instrumentation_api_publish_0_5.xml -------------------------------------------------------------------------------- /.idea/libraries/guava_18_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/.idea/libraries/guava_18_0.xml -------------------------------------------------------------------------------- /.idea/libraries/hamcrest_core_1_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/.idea/libraries/hamcrest_core_1_3.xml -------------------------------------------------------------------------------- /.idea/libraries/hamcrest_integration_1_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/.idea/libraries/hamcrest_integration_1_3.xml -------------------------------------------------------------------------------- /.idea/libraries/hamcrest_library_1_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/.idea/libraries/hamcrest_library_1_3.xml -------------------------------------------------------------------------------- /.idea/libraries/javapoet_1_3_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/.idea/libraries/javapoet_1_3_0.xml -------------------------------------------------------------------------------- /.idea/libraries/javawriter_2_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/.idea/libraries/javawriter_2_1_1.xml -------------------------------------------------------------------------------- /.idea/libraries/javax_annotation_api_1_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/.idea/libraries/javax_annotation_api_1_2.xml -------------------------------------------------------------------------------- /.idea/libraries/javax_inject_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/.idea/libraries/javax_inject_1.xml -------------------------------------------------------------------------------- /.idea/libraries/jsr305_2_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/.idea/libraries/jsr305_2_0_1.xml -------------------------------------------------------------------------------- /.idea/libraries/junit_4_12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/.idea/libraries/junit_4_12.xml -------------------------------------------------------------------------------- /.idea/libraries/rules_0_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/.idea/libraries/rules_0_5.xml -------------------------------------------------------------------------------- /.idea/libraries/runner_0_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/.idea/libraries/runner_0_5.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/github/florent37/asyncterractor/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/app/src/androidTest/java/com/github/florent37/asyncterractor/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/asyncterractor/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/app/src/main/java/com/github/florent37/asyncterractor/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/asyncterractor/MainPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/app/src/main/java/com/github/florent37/asyncterractor/MainPresenter.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/asyncterractor/MainPresenterImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/app/src/main/java/com/github/florent37/asyncterractor/MainPresenterImpl.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/asyncterractor/MainView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/app/src/main/java/com/github/florent37/asyncterractor/MainView.java -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/github/florent37/asyncterractor/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/app/src/test/java/com/github/florent37/asyncterractor/ExampleUnitTest.java -------------------------------------------------------------------------------- /asyncterractor-compiler/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /asyncterractor-compiler/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/asyncterractor-compiler/build.gradle -------------------------------------------------------------------------------- /asyncterractor-compiler/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/asyncterractor-compiler/proguard-rules.pro -------------------------------------------------------------------------------- /asyncterractor-compiler/src/main/java/com/github/florent37/holyfragment/processor/AsyncterractorProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/asyncterractor-compiler/src/main/java/com/github/florent37/holyfragment/processor/AsyncterractorProcessor.java -------------------------------------------------------------------------------- /asyncterractor-compiler/src/main/java/com/github/florent37/holyfragment/processor/Holder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/asyncterractor-compiler/src/main/java/com/github/florent37/holyfragment/processor/Holder.java -------------------------------------------------------------------------------- /asyncterractor/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /asyncterractor/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/asyncterractor/build.gradle -------------------------------------------------------------------------------- /asyncterractor/src/main/java/com/github/florent37/asyncterractor/annotations/Ignore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/asyncterractor/src/main/java/com/github/florent37/asyncterractor/annotations/Ignore.java -------------------------------------------------------------------------------- /asyncterractor/src/main/java/com/github/florent37/asyncterractor/annotations/OnThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/asyncterractor/src/main/java/com/github/florent37/asyncterractor/annotations/OnThread.java -------------------------------------------------------------------------------- /asyncterractor/src/main/java/com/github/florent37/asyncterractor/annotations/OnUiThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/asyncterractor/src/main/java/com/github/florent37/asyncterractor/annotations/OnUiThread.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/bintray-android-v1.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/gradle/bintray-android-v1.gradle -------------------------------------------------------------------------------- /gradle/bintray-java-v1.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/gradle/bintray-java-v1.gradle -------------------------------------------------------------------------------- /gradle/install-v1.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/gradle/install-v1.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Asyncterractor/HEAD/settings.gradle --------------------------------------------------------------------------------