0

我尝试使用 nativescript 在 android 中构建项目。它抛出这样的错误不止一个带有包名的库 'com.google.android.gms.license'

包.json

  "tns-android": {
  "version": "3.3.1"
}

   "nativescript-onesignal": "^1.0.7",   
"nativescript-push-notifications": "0.0.19",

应用程序.gradle

   dependencies {
    compile 'com.onesignal:OneSignal:3.+@aar'   
    compile 'com.google.android.gms:play-services-gcm:+'    
   compile 'com.google.android.gms:play-services-location:+'     
   compile "com.android.support:multidex:1.0.0"
    compile 'com.android.volley:volley:1.0.0' 
    compile 'com.google.code.gson:gson:2.2.4' }

如何解决问题?

4

2 回答 2

0

删除 node_modules 文件夹。

1.npm install tns-core-modules@latest --save 2.uinstall & 更新 tns 版本/(npm install -g nativescript) 3.update node/npm 4.npm cache clean -f

通过使用此评论,我解决了问题

于 2018-03-28T08:32:35.993 回答
0

从项目和平台中删除 node_modules 和 hooks 文件夹。重新安装它们“npm install”,然后尝试“tns platform remove android”“tns platform add android@3.4”

于 2018-03-27T06:05:09.347 回答