更新 android SDK:安装最新平台以实现新的 API,例如 "ShortcutManager"
Update android SDK : install latest platform to implement new APIs such as "ShortcutManager"
我在这里演示 Android android nougat App Shortcuts
中介绍的快捷方式
我使用以下代码创建了应用程序快捷方式
ShortcutManager shortcutManager;
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.M) {
shortcutManager = getSystemService(ShortcutManager.class);
ShortcutInfo shortcut;
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.N_MR1) {
shortcut = new ShortcutInfo.Builder(this, "second_shortcut")
.setShortLabel(getString(R.string.str_shortcut_two))
.setLongLabel(getString(R.string.str_shortcut_two_desc))
.setIcon(Icon.createWithResource(this, R.mipmap.ic_launcher))
.setIntent(new Intent(Intent.ACTION_VIEW,
Uri.parse("https://www.google.co.in")))
.build();
shortcutManager.setDynamicShortcuts(Arrays.asList(shortcut));
}
}
但是我得到了 编译时错误 cannot resolve symbol ShortcutManager
.
这是我的 build.gradle
文件
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.3"
defaultConfig {
...
minSdkVersion 9
targetSdkVersion 24
...
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:24.2.1'
}
您需要更新 dependency
,因为 ShortcutManager
已添加到 API 25 中,如前所述 here 因此您应该 update/install 以下组件 API25
- 构建工具
- 安装API25平台
- Android 支持资源库
- SDK 工具
- SDK 平台工具
并在您的 build-gradle file
中进行必要的更改,如图所示:
将您的以下项目的值更新为 25
- compileSdkVersion
- buildToolsVersion
遵循 link to see API 25 (v7.1)
中提供的功能更新
最终它会看起来像这样,使用 ShortcutManager
成功构建
您可能还想更新一些其他重要的软件包
- USB 驱动程序:用于 USB 设备调试
- 播放服务:Google 地图中添加的最新 APIs,google+ 等
- 系统映像:使用最新的 AVD 设备练习
- Android 支持存储库:android 设备、电视等的支持库
- Google 存储库:用于功能 Firebase、Google 地图、游戏成就和排行榜
我在这里演示 Android android nougat App Shortcuts
中介绍的快捷方式我使用以下代码创建了应用程序快捷方式
ShortcutManager shortcutManager;
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.M) {
shortcutManager = getSystemService(ShortcutManager.class);
ShortcutInfo shortcut;
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.N_MR1) {
shortcut = new ShortcutInfo.Builder(this, "second_shortcut")
.setShortLabel(getString(R.string.str_shortcut_two))
.setLongLabel(getString(R.string.str_shortcut_two_desc))
.setIcon(Icon.createWithResource(this, R.mipmap.ic_launcher))
.setIntent(new Intent(Intent.ACTION_VIEW,
Uri.parse("https://www.google.co.in")))
.build();
shortcutManager.setDynamicShortcuts(Arrays.asList(shortcut));
}
}
但是我得到了 编译时错误 cannot resolve symbol ShortcutManager
.
这是我的 build.gradle
文件
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.3"
defaultConfig {
...
minSdkVersion 9
targetSdkVersion 24
...
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:24.2.1'
}
您需要更新 dependency
,因为 ShortcutManager
已添加到 API 25 中,如前所述 here 因此您应该 update/install 以下组件 API25
- 构建工具
- 安装API25平台
- Android 支持资源库
- SDK 工具
- SDK 平台工具
并在您的 build-gradle file
中进行必要的更改,如图所示:
将您的以下项目的值更新为 25
- compileSdkVersion
- buildToolsVersion
遵循 link to see API 25 (v7.1)
中提供的功能更新最终它会看起来像这样,使用 ShortcutManager
您可能还想更新一些其他重要的软件包
- USB 驱动程序:用于 USB 设备调试
- 播放服务:Google 地图中添加的最新 APIs,google+ 等
- 系统映像:使用最新的 AVD 设备练习
- Android 支持存储库:android 设备、电视等的支持库
- Google 存储库:用于功能 Firebase、Google 地图、游戏成就和排行榜