去年我为学校制作了一个小应用程序,现在随着Android O的发布,我想升级它,以便针对最新版本(从25到26)
我到底该怎么做?是否有推荐的初学者学习指南或更新我的应用程序的清单?
谢谢!
答案 0 :(得分:2)
根据documentation,您必须在 build.gradle 文件中进行一些更新
android {
compileSdkVersion 26
buildToolsVersion '26.0.0'
defaultConfig {
targetSdkVersion 26
}
...
}
dependencies {
compile 'com.android.support:appcompat-v7:26.0.0'
}
// REQUIRED: Google's new Maven repo is required for the latest
// support library that is compatible with Android 8.0
repositories {
maven {
url 'https://maven.google.com'
// Alternative URL is 'https://dl.google.com/dl/android/maven2/'
}
}
注意:您必须从清单文件中删除为清单文件中的隐式广播意图注册的广播接收器。您必须使用广播阅读documentation