标签:配置文件 rip script 阶段 idm res 打开 图形 mis
ANSROID STUDIO
sdk 目录
androidStudio
编译
AS下的目录结构
manifests子目录,下面只有一个xml文件,即AndroidManifest.xml,是App的运行配置文件。
java子目录.
res子目录,存放的是App工程的资源文件
Gradle Scripts下面主要是工程的编译配置文件
build.gradle,该文件分为项目级与模块级两种,用于描述App工程的编译规则。
proguard-rules.pro,该文件用于描述java文件的代码混淆规则。
gradle.properties,该文件用于配置编译工程的命令行参数,一般无须改动。
settings.gradle,配置哪些模块在一起编译。初始内容为include ‘:app‘,表示只编译App模块
local.properties,项目的本地配置,一般无须改动。该文件是在工程编译时自动生成的,用于描述 开发者本机的环境配置,比如SDK的本地路径、NDK的本地路径等
apply plugin: 'com.android.application'android { //指定编译用的SDK版本号 compileSdkVersion 29 //指定编译工具的版本号 buildToolsVersion "29.0.2" defaultConfig { //指定模块的应用编号,(APP的包名) applicationId "com.example.userregist" // APP适合运行的最小SDK 版本号 minSdkVersion 16 //目标设备的版本号 targetSdkVersion 29 指定app 的应用版本号 versionCode 1 //指定APP的应用版本名称 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { release { //是否开启代码混淆 true:是 false:否 minifyEnabled false //指定代码混淆规则的文件名 proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } }}//指定app 编译的依赖信息dependencies { //指定引用jar包的路径 implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'androidx.appcompat:appcompat:1.1.0' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' //指定单元编译用的junit版本号 testImplementation 'junit:junit:4.12' //指定编译android的高版本支持库 androidTestImplementation 'androidx.test.ext:junit:1.1.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'}
<!--根节点:指定该APP 的包名--><manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.userregist">
<!--user-sdk:早期使用ecplise开发app时使用的 。在AS 内被放置在build.gradle文件内 android:minSdkVersion android:targetSdkVersion user-permission:声明app在使用时需要的权限名称application android:allowBackup 指定是否允许备份 开发阶段为true 上线为false android:icon:用于指定该app 在手机屏幕上显示的图标 Android:lable:指定该app 在手机屏幕上显示的名称 android:supportsRtl 设置为true表示支持阿拉伯/波斯语这种从左到右的文字排列顺序 Android:threme 指定该app的显示风格 ......-->
快捷键
下载下来的App工程是Module模块形式,则不能把它当作项目导入,否则会出现“Plugin with id ‘com.android.application‘ not found.”的错误。
)打开当前项目的settings.gradle,把下面这行:
? include ‘:app‘
改成下面这样,也就是手动添加新模块的名称:
? include ‘:app‘,‘:新模块的名称‘
标签:配置文件 rip script 阶段 idm res 打开 图形 mis
原文地址:https://www.cnblogs.com/qq2972665955/p/11944445.html