我从朋友那里收到了一个应用程序,当我打开它时,它说:
无法从以下位置获取Gradle包装器属性:
C:... \ app \ gradle \ wrapper \ gradle-wrapper.properties
您是否要使用支持的最新Gradle版本重新创建包装器?
单击“确定”以重新创建文件,或单击“取消”以手动设置本地Gradle发行版的路径
所以我单击“确定”,然后出现上面的错误。
这是项目构建gradle的样子
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
defaultConfig {
applicationId "com.example.practical4"
minSdkVersion 14
targetSdkVersion 29
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.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}
我该如何解决?