├── 031_simple_build_files.md ├── 11_goals_of_the_new_build_system.md ├── README.md ├── SUMMARY.md ├── _book ├── 031_simple_build_files.html ├── 11_goals_of_the_new_build_system.html ├── GLOSSARY.html ├── aapt_options.html ├── advanced_build_customization.html ├── android_tasks.html ├── basic_build_customization.html ├── basics_and_configuration.html ├── build_options.html ├── build_tasks.html ├── build_types.html ├── build_variants.html ├── building_and_tasks.html ├── buildtype_and_product_flavor_property_reference.html ├── configuring_the_structure.html ├── cover.jpg ├── cover_small.jpg ├── creating_a_library_project.html ├── dependencies,_android_libraries_and_multi-project_setup.html ├── dependencies_on_binary_packages.html ├── dex_options.html ├── differences_between_a_project_and_a_library_project.html ├── general_tasks.html ├── gitbook │ ├── app.js │ ├── fonts │ │ ├── fontawesome │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── merriweather │ │ │ ├── 250.woff │ │ │ ├── 250i.woff │ │ │ ├── 400.woff │ │ │ ├── 400i.woff │ │ │ ├── 700.woff │ │ │ ├── 700i.woff │ │ │ ├── 900.woff │ │ │ └── 900i.woff │ │ └── opensans │ │ │ ├── 300.woff │ │ │ ├── 300i.woff │ │ │ ├── 400.woff │ │ │ ├── 400i.woff │ │ │ ├── 600.woff │ │ │ ├── 600i.woff │ │ │ ├── 700.woff │ │ │ └── 700i.woff │ ├── images │ │ ├── apple-touch-icon-precomposed-152.png │ │ └── favicon.ico │ ├── plugins │ │ └── gitbook-plugin-mathjax │ │ │ └── plugin.js │ ├── print.css │ └── style.css ├── glossary_index.json ├── goals_of_the_new_build_system.html ├── index.html ├── java_compilation_options.html ├── java_project_tasks.html ├── library_projects.html ├── library_publication.html ├── lint_support.html ├── local_packages.html ├── manifest_entries.html ├── manipulating_tasks.html ├── multi-flavor_variants.html ├── multi-projects_reports.html ├── multi_project_setup.html ├── product_flavor_configuration.html ├── product_flavors.html ├── project_structure.html ├── publish.sh ├── referencing_a_library.html ├── remote_artifacts.html ├── req.html ├── requirements.html ├── running_proguard.html ├── running_tests.html ├── search_index.json ├── signing_configurations.html ├── single_projects.html ├── sourcesets_and_dependencies.html ├── test_reports.html ├── testing.html ├── testing_android_libraries.html ├── using_sourcecompatibility_17.html └── why_gradle.html ├── aapt_options.md ├── advanced_build_customization.md ├── android_tasks.md ├── basic_build_customization.md ├── basics_and_configuration.md ├── configuring_the_structure.md ├── cover.jpg ├── cover_small.jpg ├── creating_a_library_project.md ├── dependencies,_android_libraries_and_multi-project_setup.md ├── dependencies_on_binary_packages.md ├── dex_options.md ├── differences_between_a_project_and_a_library_project.md ├── general_tasks.md ├── goals_of_the_new_build_system.md ├── java_compilation_options.md ├── java_project_tasks.md ├── library_projects.md ├── library_publication.md ├── lint_support.md ├── local_packages.md ├── manifest_entries.md ├── manipulating_tasks.md ├── multi-flavor_variants.md ├── multi-projects_reports.md ├── multi_project_setup.md ├── product_flavor_configuration.md ├── product_flavors.md ├── project_structure.md ├── publish.sh ├── referencing_a_library.md ├── remote_artifacts.md ├── req.md ├── requirements.md ├── running_proguard.md ├── running_tests.md ├── signing_configurations.md ├── single_projects.md ├── sourcesets_and_dependencies.md ├── test_reports.md ├── testing.md ├── testing_android_libraries.md ├── using_sourcecompatibility_17.md └── why_gradle.md /031_simple_build_files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/031_simple_build_files.md -------------------------------------------------------------------------------- /11_goals_of_the_new_build_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/11_goals_of_the_new_build_system.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /_book/031_simple_build_files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/031_simple_build_files.html -------------------------------------------------------------------------------- /_book/11_goals_of_the_new_build_system.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/11_goals_of_the_new_build_system.html -------------------------------------------------------------------------------- /_book/GLOSSARY.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/GLOSSARY.html -------------------------------------------------------------------------------- /_book/aapt_options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/aapt_options.html -------------------------------------------------------------------------------- /_book/advanced_build_customization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/advanced_build_customization.html -------------------------------------------------------------------------------- /_book/android_tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/android_tasks.html -------------------------------------------------------------------------------- /_book/basic_build_customization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/basic_build_customization.html -------------------------------------------------------------------------------- /_book/basics_and_configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/basics_and_configuration.html -------------------------------------------------------------------------------- /_book/build_options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/build_options.html -------------------------------------------------------------------------------- /_book/build_tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/build_tasks.html -------------------------------------------------------------------------------- /_book/build_types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/build_types.html -------------------------------------------------------------------------------- /_book/build_variants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/build_variants.html -------------------------------------------------------------------------------- /_book/building_and_tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/building_and_tasks.html -------------------------------------------------------------------------------- /_book/buildtype_and_product_flavor_property_reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/buildtype_and_product_flavor_property_reference.html -------------------------------------------------------------------------------- /_book/configuring_the_structure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/configuring_the_structure.html -------------------------------------------------------------------------------- /_book/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/cover.jpg -------------------------------------------------------------------------------- /_book/cover_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/cover_small.jpg -------------------------------------------------------------------------------- /_book/creating_a_library_project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/creating_a_library_project.html -------------------------------------------------------------------------------- /_book/dependencies,_android_libraries_and_multi-project_setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/dependencies,_android_libraries_and_multi-project_setup.html -------------------------------------------------------------------------------- /_book/dependencies_on_binary_packages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/dependencies_on_binary_packages.html -------------------------------------------------------------------------------- /_book/dex_options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/dex_options.html -------------------------------------------------------------------------------- /_book/differences_between_a_project_and_a_library_project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/differences_between_a_project_and_a_library_project.html -------------------------------------------------------------------------------- /_book/general_tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/general_tasks.html -------------------------------------------------------------------------------- /_book/gitbook/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/app.js -------------------------------------------------------------------------------- /_book/gitbook/fonts/fontawesome/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/fonts/fontawesome/FontAwesome.otf -------------------------------------------------------------------------------- /_book/gitbook/fonts/fontawesome/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/fonts/fontawesome/fontawesome-webfont.eot -------------------------------------------------------------------------------- /_book/gitbook/fonts/fontawesome/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/fonts/fontawesome/fontawesome-webfont.svg -------------------------------------------------------------------------------- /_book/gitbook/fonts/fontawesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/fonts/fontawesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /_book/gitbook/fonts/fontawesome/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/fonts/fontawesome/fontawesome-webfont.woff -------------------------------------------------------------------------------- /_book/gitbook/fonts/merriweather/250.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/fonts/merriweather/250.woff -------------------------------------------------------------------------------- /_book/gitbook/fonts/merriweather/250i.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/fonts/merriweather/250i.woff -------------------------------------------------------------------------------- /_book/gitbook/fonts/merriweather/400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/fonts/merriweather/400.woff -------------------------------------------------------------------------------- /_book/gitbook/fonts/merriweather/400i.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/fonts/merriweather/400i.woff -------------------------------------------------------------------------------- /_book/gitbook/fonts/merriweather/700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/fonts/merriweather/700.woff -------------------------------------------------------------------------------- /_book/gitbook/fonts/merriweather/700i.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/fonts/merriweather/700i.woff -------------------------------------------------------------------------------- /_book/gitbook/fonts/merriweather/900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/fonts/merriweather/900.woff -------------------------------------------------------------------------------- /_book/gitbook/fonts/merriweather/900i.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/fonts/merriweather/900i.woff -------------------------------------------------------------------------------- /_book/gitbook/fonts/opensans/300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/fonts/opensans/300.woff -------------------------------------------------------------------------------- /_book/gitbook/fonts/opensans/300i.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/fonts/opensans/300i.woff -------------------------------------------------------------------------------- /_book/gitbook/fonts/opensans/400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/fonts/opensans/400.woff -------------------------------------------------------------------------------- /_book/gitbook/fonts/opensans/400i.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/fonts/opensans/400i.woff -------------------------------------------------------------------------------- /_book/gitbook/fonts/opensans/600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/fonts/opensans/600.woff -------------------------------------------------------------------------------- /_book/gitbook/fonts/opensans/600i.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/fonts/opensans/600i.woff -------------------------------------------------------------------------------- /_book/gitbook/fonts/opensans/700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/fonts/opensans/700.woff -------------------------------------------------------------------------------- /_book/gitbook/fonts/opensans/700i.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/fonts/opensans/700i.woff -------------------------------------------------------------------------------- /_book/gitbook/images/apple-touch-icon-precomposed-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/images/apple-touch-icon-precomposed-152.png -------------------------------------------------------------------------------- /_book/gitbook/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/images/favicon.ico -------------------------------------------------------------------------------- /_book/gitbook/plugins/gitbook-plugin-mathjax/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/plugins/gitbook-plugin-mathjax/plugin.js -------------------------------------------------------------------------------- /_book/gitbook/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/print.css -------------------------------------------------------------------------------- /_book/gitbook/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/gitbook/style.css -------------------------------------------------------------------------------- /_book/glossary_index.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /_book/goals_of_the_new_build_system.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/goals_of_the_new_build_system.html -------------------------------------------------------------------------------- /_book/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/index.html -------------------------------------------------------------------------------- /_book/java_compilation_options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/java_compilation_options.html -------------------------------------------------------------------------------- /_book/java_project_tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/java_project_tasks.html -------------------------------------------------------------------------------- /_book/library_projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/library_projects.html -------------------------------------------------------------------------------- /_book/library_publication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/library_publication.html -------------------------------------------------------------------------------- /_book/lint_support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/lint_support.html -------------------------------------------------------------------------------- /_book/local_packages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/local_packages.html -------------------------------------------------------------------------------- /_book/manifest_entries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/manifest_entries.html -------------------------------------------------------------------------------- /_book/manipulating_tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/manipulating_tasks.html -------------------------------------------------------------------------------- /_book/multi-flavor_variants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/multi-flavor_variants.html -------------------------------------------------------------------------------- /_book/multi-projects_reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/multi-projects_reports.html -------------------------------------------------------------------------------- /_book/multi_project_setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/multi_project_setup.html -------------------------------------------------------------------------------- /_book/product_flavor_configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/product_flavor_configuration.html -------------------------------------------------------------------------------- /_book/product_flavors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/product_flavors.html -------------------------------------------------------------------------------- /_book/project_structure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/project_structure.html -------------------------------------------------------------------------------- /_book/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/publish.sh -------------------------------------------------------------------------------- /_book/referencing_a_library.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/referencing_a_library.html -------------------------------------------------------------------------------- /_book/remote_artifacts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/remote_artifacts.html -------------------------------------------------------------------------------- /_book/req.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/req.html -------------------------------------------------------------------------------- /_book/requirements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/requirements.html -------------------------------------------------------------------------------- /_book/running_proguard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/running_proguard.html -------------------------------------------------------------------------------- /_book/running_tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/running_tests.html -------------------------------------------------------------------------------- /_book/search_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/search_index.json -------------------------------------------------------------------------------- /_book/signing_configurations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/signing_configurations.html -------------------------------------------------------------------------------- /_book/single_projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/single_projects.html -------------------------------------------------------------------------------- /_book/sourcesets_and_dependencies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/sourcesets_and_dependencies.html -------------------------------------------------------------------------------- /_book/test_reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/test_reports.html -------------------------------------------------------------------------------- /_book/testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/testing.html -------------------------------------------------------------------------------- /_book/testing_android_libraries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/testing_android_libraries.html -------------------------------------------------------------------------------- /_book/using_sourcecompatibility_17.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/using_sourcecompatibility_17.html -------------------------------------------------------------------------------- /_book/why_gradle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/_book/why_gradle.html -------------------------------------------------------------------------------- /aapt_options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/aapt_options.md -------------------------------------------------------------------------------- /advanced_build_customization.md: -------------------------------------------------------------------------------- 1 | # 高级构建的自定义 2 | -------------------------------------------------------------------------------- /android_tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/android_tasks.md -------------------------------------------------------------------------------- /basic_build_customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/basic_build_customization.md -------------------------------------------------------------------------------- /basics_and_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/basics_and_configuration.md -------------------------------------------------------------------------------- /configuring_the_structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/configuring_the_structure.md -------------------------------------------------------------------------------- /cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/cover.jpg -------------------------------------------------------------------------------- /cover_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/cover_small.jpg -------------------------------------------------------------------------------- /creating_a_library_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/creating_a_library_project.md -------------------------------------------------------------------------------- /dependencies,_android_libraries_and_multi-project_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/dependencies,_android_libraries_and_multi-project_setup.md -------------------------------------------------------------------------------- /dependencies_on_binary_packages.md: -------------------------------------------------------------------------------- 1 | # 依赖二进制包 2 | -------------------------------------------------------------------------------- /dex_options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/dex_options.md -------------------------------------------------------------------------------- /differences_between_a_project_and_a_library_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/differences_between_a_project_and_a_library_project.md -------------------------------------------------------------------------------- /general_tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/general_tasks.md -------------------------------------------------------------------------------- /goals_of_the_new_build_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/goals_of_the_new_build_system.md -------------------------------------------------------------------------------- /java_compilation_options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/java_compilation_options.md -------------------------------------------------------------------------------- /java_project_tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/java_project_tasks.md -------------------------------------------------------------------------------- /library_projects.md: -------------------------------------------------------------------------------- 1 | # 库工程 2 | -------------------------------------------------------------------------------- /library_publication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/library_publication.md -------------------------------------------------------------------------------- /lint_support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/lint_support.md -------------------------------------------------------------------------------- /local_packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/local_packages.md -------------------------------------------------------------------------------- /manifest_entries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/manifest_entries.md -------------------------------------------------------------------------------- /manipulating_tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/manipulating_tasks.md -------------------------------------------------------------------------------- /multi-flavor_variants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/multi-flavor_variants.md -------------------------------------------------------------------------------- /multi-projects_reports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/multi-projects_reports.md -------------------------------------------------------------------------------- /multi_project_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/multi_project_setup.md -------------------------------------------------------------------------------- /product_flavor_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/product_flavor_configuration.md -------------------------------------------------------------------------------- /product_flavors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/product_flavors.md -------------------------------------------------------------------------------- /project_structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/project_structure.md -------------------------------------------------------------------------------- /publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/publish.sh -------------------------------------------------------------------------------- /referencing_a_library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/referencing_a_library.md -------------------------------------------------------------------------------- /remote_artifacts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/remote_artifacts.md -------------------------------------------------------------------------------- /req.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/req.md -------------------------------------------------------------------------------- /requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/requirements.md -------------------------------------------------------------------------------- /running_proguard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/running_proguard.md -------------------------------------------------------------------------------- /running_tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/running_tests.md -------------------------------------------------------------------------------- /signing_configurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/signing_configurations.md -------------------------------------------------------------------------------- /single_projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/single_projects.md -------------------------------------------------------------------------------- /sourcesets_and_dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/sourcesets_and_dependencies.md -------------------------------------------------------------------------------- /test_reports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/test_reports.md -------------------------------------------------------------------------------- /testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/testing.md -------------------------------------------------------------------------------- /testing_android_libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/testing_android_libraries.md -------------------------------------------------------------------------------- /using_sourcecompatibility_17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/using_sourcecompatibility_17.md -------------------------------------------------------------------------------- /why_gradle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeungeek/GradlePlugin_UserGuide/HEAD/why_gradle.md --------------------------------------------------------------------------------