gpt4 book ai didi

android - Oreo 的依赖项更改会出错

转载 作者:行者123 更新时间:2023-11-29 19:07:29 26 4
gpt4 key购买 nike

build.gradle依赖更改为

 compile 'com.android.support:design:26.1.0'

如前所述here ,项目构建成功但是当我尝试运行它时会出现类似

的错误

error: cannot find symbol variable super

error: cannot find symbol method findViewById(int)

error: cannot find symbol method finish()

error: cannot find symbol method getResources()

error: cannot find symbol method setContentView(int)

build.gradle

apply plugin: 'com.android.application'

android {
compileSdkVersion 26
buildToolsVersion "26.0.2"
defaultConfig {
applicationId "com.example.myApp"
minSdkVersion 16
targetSdkVersion 26
versionCode 1
versionName "1.0"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
android {
useLibrary 'org.apache.http.legacy'
}
dexOptions {
javaMaxHeapSize "4g"
}
}

dependencies {
compile 'com.android.support:multidex:1.0.1'
compile fileTree(dir: 'libs', include: ['*.jar'])


testCompile 'junit:junit:4.12'

compile 'com.android.support:design:26.1.0'
compile 'com.android.support:support-v4:25.3.1'
compile 'com.android.support:cardview-v7:25.3.1'
}
allprojects {
repositories {
jcenter()
maven {
url 'https://maven.google.com'
}
maven { url "https://jitpack.io" }
}
}

最佳答案

更改我的依赖项后问题解决。

compile 'com.android.support:design:26.1.0'
compile 'com.android.support:support-v13:26.1.0'
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support:cardview-v7:26.1.0'

构建版本如下所示。

compileSdkVersion 26
buildToolsVersion "26.0.2"
defaultConfig {
minSdkVersion 16
targetSdkVersion 26
versionCode 1
versionName "1.0"
multiDexEnabled true
}

问题是因为 ActionbarActivity。我有一些扩展 ActionbarActivity 的 Activity 。所以只需将 Actionbaractivity 替换为 Appcompact Activity。

请注意:android 开发人员文档说:“将 AppCompatActivity 更新为使用支持库操作栏功能的 Activity 的基类。此类取代了已弃用的 ActionBarActivity。”

关于android - Oreo 的依赖项更改会出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46646502/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com