我尝试将Onesignal作为推送服务添加到应用程序,但现在我在编辑build.gradle文件后收到以下错误。
错误:无法获取类型为org.gradle.api.Project的根项目“android”的未知属性“android”。
有人能告诉我怎么解决这个问题吗?这是我第一次编辑android项目。
这是我的build.gradle(应用程序)文件:
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')
}
3条答案
按热度按时间noj0wjuj1#
错误
Could not get unknown property 'android' for root project 'projectName' of type org.gradle.api.Project.
表示您将 * onesignal-gradle-plugin * 应用于您的root build.gradle
或android/build.gradle
,而不是app/build.gradle
中的插件。上下文中的行
应用插件:'com. onesignal.安卓软件开发平台. onesignal-升级插件'
See discussion
vulvrdjw2#
如果你正在使用一个信号,确保下面的应用插件像是在里面
不是别的地方
zfycwa2u3#
这是一个奇怪的错误。
我有2个系统相同版本的SDK,flutter,dart甚至windows和android studio版本。
项目在第一个系统中运行良好,但第二个系统抛出了这个错误!我遇到了这个问题,我通过更新目标库的Gradle版本解决了这个问题。
在我的例子中,我将Gradle的版本从3.4.2更新到4.1.1,并重新制作了项目,问题就解决了!
编辑此文件(抛出此错误的库):\src\flutter.pub-cache\托管的\pub.dartlang.org\安卓系统启动器URL-6.0.17\安卓系统/构建版本.gradle
但我正试图找到一个更好的解决这个错误!