内容简介:Gradle已经提供了很多Automation相关的工作,Google就选它作为Android的build system。
Android开发的一些知识 - At a high level, what happens when you hit the build button on Andorid Studio?
课程: Gradle for Android and Java
Gradle已经提供了很多Automation相关的工作,Google就选它作为Android的build system。
Android Studio把所有任务都交给了Gradle来完成,自己只是一个wrapper。但Gradle并不了解Android,所以Google提供了android-gradle-plugin,简称AGP。
新建一个Empty Activity的Kotlin项目。
点击Run,发现运行了
Executing tasks: [:app:assembleDebug]
这里摘一些有用的Tasks:
> Transform ... // 首先是Jetifier和AAR transform ... > Task :app:compileDebugAidl // 处理AIDL,用于IPC https://developer.android.com/guide/components/aidl > Task :app:compileDebugRenderscript // 处理RenderScript https://developer.android.com/guide/components/aidl > Task :app:checkDebugManifest // 检查Manifest > Task :app:generateDebugBuildConfig // 生成BuildConfig ... > Task :app:generateDebugResValues // 首先处理并生成资源Resources > Task :app:generateDebugResources > Task :app:createDebugCompatibleScreenManifests > Task :app:mergeDebugResources > Task :app:processDebugManifest // 处理Manifest > Task :app:processDebugResources > Task :app:compileDebugKotlin // 编译Kotlin > Task :app:prepareLintJar > Task :app:generateDebugSources > Task :app:javaPreCompileDebug // 预编译Java > Task :app:compileDebugJavaWithJavac // 编译Java > Task :app:instantRunMainApkResourcesDebug ... > Task :app:mergeDebugShaders // 继续处理资源,Shaders和Assets > Task :app:compileDebugShaders > Task :app:generateDebugAssets > Task :app:mergeDebugAssets > Task :app:validateSigningDebug // 签名 > Task :app:signingConfigWriterDebug > Task :app:processInstantRunDebugResourcesApk ... > Task :app:compileDebugNdk // NDK > Task :app:mergeDebugJniLibFolders // JNI > Task :app:transformNativeLibsWithMergeJniLibsForDebug > Task :app:processDebugJavaRes // 处理Java Resources > Task :app:transformResourcesWithMergeJavaResForDebug > Task :app:transformNativeLibsAndResourcesWithJavaResourcesVerifierForDebug > Task :app:transformClassesWithInstantRunForDebug > Task :app:transformClassesAndClassesEnhancedWithInstantReloadDexForDebug > Task :app:incrementalDebugTasks > Task :app:preColdswapDebug > Task :app:fastDeployDebugExtractor > Task :app:generateDebugInstantRunAppInfo > Task :app:transformClassesWithDexBuilderForDebug > Task :app:transformDexArchiveWithExternalLibsDexMergerForDebug > Task :app:transformDexArchiveWithDexMergerForDebug > Task :app:transformDexWithInstantRunDependenciesApkForDebug > Task :app:instantRunSplitApkResourcesDebug > Task :app:transformDexWithInstantRunSlicesApkForDebug > Task :app:packageDebug // 打包 > Task :app:buildInfoGeneratorDebug > Task :app:compileDebugSources > Task :app:assembleDebug
接下来会运行 installDebug
。就是简单地把apk push到设备上安装。
最后运行adb打开app的launcher Activity。
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- iOS初级开发学习笔记:tablevView中,点击cell后下部弹出下级列表,需实现cell高变化
- angular2手动点击特定元素上的点击事件
- Android-View点击事件短时间重复点击的过滤
- etherscan点击劫持漏洞
- 点击劫持防御方案
- 点击劫持 小例
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
ECMAScript6入门
阮一峰 / 电子工业出版社 / 2014-8 / 49.00元
《ECMAScript6入门》全面介绍了ECMAScript6新引入的语法特性,覆盖了ECMAScript6与ECMAScript5的所有不同之处,对涉及的语法知识给予了详细介绍,并给出了大量简洁易懂的示例代码。 《ECMAScript6入门》为中级难度,适合已有一定JavaScript语言基础的读者,用来了解这门语言的最新发展;也可当作参考手册,查寻新增的语法点。一起来看看 《ECMAScript6入门》 这本书的介绍吧!