我尝试将 Onesignal 作为推送服务添加到应用程序,但现在在编辑 build.gradle 文件后出现以下错误。
错误:无法为类型为 org.gradle.api.Project 的根项目“android”获取未知属性“android”。
有人可以告诉我如何解决吗?这是我第一次编辑 android 项目。
那是我的 build.gradle(app) 文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
minSdkVersion 16
targetSdkVersion 28
applicationId "io.gonative.android.azndpe"
versionCode 2
manifestPlaceholders = [manifestApplicationId: "${applicationId}",
onesignal_app_id: "APP-ID",
onesignal_google_project_number: "REMOTE"]
}
signingConfigs {
release {
storeFile file("../../release.keystore")
storePassword "password"
keyAlias "release"
keyPassword "password"
}
upload {
storeFile file("../../upload.keystore")
storePassword "password"
keyAlias "upload"
keyPassword "password"
}
}
buildTypes {
debug {
applicationIdSuffix ".debug"
}
releaseApk {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
zipAlignEnabled true
signingConfig signingConfigs.release
}
releaseAppbundle {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
zipAlignEnabled true
signingConfig signingConfigs.upload
}
}
flavorDimensions "webview"
productFlavors {
normal {
dimension "webview"
}
}
}
dependencies {
implementation 'com.joanzapata.iconify:android-iconify-fontawesome:2.2.2'
implementation 'com.facebook.android:facebook-android-sdk:4.39.0'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'com.android.support:customtabs:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.google.android.gms:play-services-gcm:12.0.1'
implementation 'com.google.android.gms:play-services-location:12.0.1'
implementation 'com.onesignal:OneSignal:[3.9.1, 3.99.99]'
implementation fileTree(dir: 'libs', include: '*.jar')
implementation fileTree(dir: 'libs', include: '*.aar')
}
原文由 Orion 发布,翻译遵循 CC BY-SA 4.0 许可协议
The error
Could not get unknown property 'android' for root project 'projectName' of type org.gradle.api.Project.
means you applied the onesignal-gradle-plugin to yourroot build.gradle
orandroid/build.gradle
instead of the one inapp/build.gradle
.移动它会修复你的错误。上下文中的行
见讨论