包含实现“ com.google.firebase:firebase-core:17.0.0” 在我的build.gradle(app)中,我的项目未成功同步。 我已经尝试清理我尝试过的项目,错误提示,将minSdkVersion增加到16(它给出了另一个错误),但没有任何效果。
build.gradle(app)
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.saad.error"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.google.firebase:firebase-core:17.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
apply plugin: 'com.google.gms.google-services'
清单文件
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.saad.error">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
答案 0 :(得分:0)
我不是专家,但是我遇到了同样的问题,我在android模式下转到app文件夹,右键单击它并输入了``打开模块设置''。在``默认配置''中,我将minSDK设置为我安装的版本
答案 1 :(得分:0)
遇到了同样的问题,只需将项目迁移到androidx即可解决 单击“重构”选项卡->“迁移到androidx”->“仅提供备份目录”->再次单击“重构” 希望这会清除相同的
答案 2 :(得分:0)
我刚开始在Android上进行开发,却遇到了同样的错误。我将minSdkVersion
从15更改为16,然后它开始构建并运行。