将 appcompat v7-22 添加到 Android studio 项目
Add appcompat v7-22 to Android studio project
嗨,我想在我的应用程序中使用 appcompatv7-22,为此我使用这个 gradle 设置
android {
compileSdkVersion 22
buildToolsVersion "22.0.0"
defaultConfig {
applicationId "com.myapp"
minSdkVersion 11
targetSdkVersion 22
}
buildTypes {
release {
minifyEnabled true
proguardFiles 'proguard.cfg'
}
}
}
dependencies {
compile 'com.android.support:appcompat-v7:22.+'
}
但是当我 运行 它时,我给出了这个错误信息
Error:Failed to find: com.android.support:appcompat-v7:22.+
我也试试这个 v7:22.0.0 和这个 v7:22.1.0 但还是一样的错误
这是我的 sdk maneger
所以谁能帮帮我。
更新
我看到了我的 extras\android\m2repository\com\android\support 文件夹,但是 21.03 是最新版本。我的存储库版本是 10,我知道它的最新版本
在哪里
com.android.support:appcompat-v7:22.0.0 ?
回答
我终于找到了我的问题感谢开发人员的回答我的问题是支持 ripository 库,最后可用的版本是 15,我的版本是 9,更新后我的问题解决了。
This library adds support for the Action Bar user interface design
pattern. This library includes support for material design user
interface implementations.
请更新您的版本。叫这个而不是你的。
compile 'com.android.support:appcompat-v7:22.2.0'
编辑
调用最新稳定版
compile 'com.android.support:appcompat-v7:23.4.0'
并设置minifyEnabled false。然后
Re-Build & Gradle & Restart
你的项目
缺少Android support repository
,所以转到Android SDK,安装Android Support Repository
和Android Support Library
。您也可以使用以下
避免写+,写version no like。
compile 'com.android.support:appcompat-v7:22.2.0'
C:\Users\SysName\AppData\Local\Android\sdk\extras\android\m2repository\com\android\support
在windows中,检查这个路径。在支持文件夹中,您可以获得 appcompat 库或任何支持库 want.In appcompat 文件夹,您可以获得通过 sdk 安装的版本列表。
获取版本号并在 gradle 设置中提及相同的版本号,如下所示。编译 'com.android.support:appcompat-v7:25.0.0'
问题描述:
构建 - 构建输出选项卡
Could not find com.android.support:appcompat-v7:22.0.0.
Required by:
project :app
Please install the Android Support Repository from the Android SDK Manager.
Open Android SDK Manager
构建 - 同步选项卡
ERROR: Failed to resolve: com.android.support:appcompat-v7:22.0.0
Add Google Maven repository and sync project
Show in Project Structure dialog
Affected Modules: app
注意:
Android 支持存储库是最新的(版本 47.0.0,2019 年 7 月)
解决方案: 在项目的 build.gradle 文件中包含 Google 的 Maven 存储库。
- 打开build.gradle
- 添加"google()"如下图
allprojects {
repositories {
google()
}
}
嗨,我想在我的应用程序中使用 appcompatv7-22,为此我使用这个 gradle 设置
android {
compileSdkVersion 22
buildToolsVersion "22.0.0"
defaultConfig {
applicationId "com.myapp"
minSdkVersion 11
targetSdkVersion 22
}
buildTypes {
release {
minifyEnabled true
proguardFiles 'proguard.cfg'
}
}
}
dependencies {
compile 'com.android.support:appcompat-v7:22.+'
}
但是当我 运行 它时,我给出了这个错误信息
Error:Failed to find: com.android.support:appcompat-v7:22.+
我也试试这个 v7:22.0.0 和这个 v7:22.1.0 但还是一样的错误
这是我的 sdk maneger
所以谁能帮帮我。
更新
我看到了我的 extras\android\m2repository\com\android\support 文件夹,但是 21.03 是最新版本。我的存储库版本是 10,我知道它的最新版本
在哪里
com.android.support:appcompat-v7:22.0.0 ?
回答
我终于找到了我的问题感谢开发人员的回答我的问题是支持 ripository 库,最后可用的版本是 15,我的版本是 9,更新后我的问题解决了。
This library adds support for the Action Bar user interface design pattern. This library includes support for material design user interface implementations.
请更新您的版本。叫这个而不是你的。
compile 'com.android.support:appcompat-v7:22.2.0'
编辑
调用最新稳定版
compile 'com.android.support:appcompat-v7:23.4.0'
并设置minifyEnabled false。然后
Re-Build & Gradle & Restart
你的项目
缺少Android support repository
,所以转到Android SDK,安装Android Support Repository
和Android Support Library
。您也可以使用以下
避免写+,写version no like。
compile 'com.android.support:appcompat-v7:22.2.0'
C:\Users\SysName\AppData\Local\Android\sdk\extras\android\m2repository\com\android\support
在windows中,检查这个路径。在支持文件夹中,您可以获得 appcompat 库或任何支持库 want.In appcompat 文件夹,您可以获得通过 sdk 安装的版本列表。
获取版本号并在 gradle 设置中提及相同的版本号,如下所示。编译 'com.android.support:appcompat-v7:25.0.0'
问题描述:
构建 - 构建输出选项卡
Could not find com.android.support:appcompat-v7:22.0.0.
Required by:
project :app
Please install the Android Support Repository from the Android SDK Manager. Open Android SDK Manager
构建 - 同步选项卡
ERROR: Failed to resolve: com.android.support:appcompat-v7:22.0.0
Add Google Maven repository and sync project
Show in Project Structure dialog
Affected Modules: app
注意:
Android 支持存储库是最新的(版本 47.0.0,2019 年 7 月)
解决方案: 在项目的 build.gradle 文件中包含 Google 的 Maven 存储库。
- 打开build.gradle
- 添加"google()"如下图
allprojects {
repositories {
google()
}
}