确保你的Android Studio已经成功安装,并且已配置好环境变量。
在Android Studio中创建一个新项目。如果你已经有现有的项目,请在该项目中选择File > New > New Module,并选择Gradle Project。
确认你的项目导入了Gradle插件。在你的build.gradle文件中添加下面的代码:
dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
}
在你的项目目录中创建一个build.gradle文件。在文件中添加以下代码:
apply plugin: 'java'
apply plugin: 'com.android.application'
android {
compileSdkVersion 30
buildToolsVersion "30.0.2"
defaultConfig {
applicationId "com.example.myapplication"
minSdkVersion 21
targetSdkVersion 30
versionCode 1
versionName "1.0"
}
buildTypes {
release {
// ...
}
}
}
点击"Sync Project with Gradle Files",然后点击"Run"来运行你的项目。
注意:以上示例代码假定你的项目使用了Java插件。如果你正在使用Kotlin或其他插件,请相应地进行更改。