我将项目移至一台新计算机,该计算机装有新安装的Java和Android Studio,并且开始运行异常。首先,要求我在gradle文件中将“ compile”和“ implementation”更改为。我这样做了,然后又被要求更改我的目标sdk版本,我也做了,并且还更改了appcompat库的版本,但是在我的类中,appcompat的导入以及方法和项目无法生成。
我清理,重建,删除了.idea文件夹,基本上做了我能想到的一切。
我的gradle文件如下:
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion '28.0.3'
defaultConfig {
applicationId "com.betako.pretprodazba"
minSdkVersion 15
targetSdkVersion 26
versionCode 1
versionName "1.0"
multiDexEnabled true
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/license.txt'
exclude 'META-INF/notice.txt'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
testImplementation 'junit:junit:4.12'
implementation 'com.android.support:appcompat-v7:26.0.1'
implementation 'com.android.support:animated-vector-drawable:26.0.1'
implementation 'com.android.support:mediarouter-v7:26.0.1'
implementation 'com.android.support:design:26.0.1'
implementation 'com.google.android.gms:play-services:8.1.0'
implementation files('libs/commons-net-1.4.1.jar')
}