apply plugin: 'com.android.application' android { compileSdkVersion 31 buildToolsVersion "31.0.0" defaultConfig { applicationId "com.example.scypdemot" minSdkVersion 15 targetSdkVersion 31 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'androidx.appcompat:appcompat:1.0.2' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' testImplementation 'junit:junit:4.12' androidTestImplementation 'androidx.test.ext:junit:1.1.0' androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1' }
时间: 2024-04-28 13:20:21 浏览: 173
Android:Caused by: java.lang.NoClassDefFoundError: com/android/builder/Version
这是一个在 Android Studio 中创建的基本的 Android 应用程序的 build.gradle 文件,其中包含了应用程序的基本配置和依赖库的声明。在这个文件中,你可以指定应用程序的最低版本和目标 SDK 版本,定义应用程序的构建类型,以及声明应用程序所依赖的库。此外,还可以配置混淆和代码优化规则。
阅读全文