lianglee commented on issue #1645:
URL: 
https://github.com/apache/cordova-android/issues/1645#issuecomment-1686837728

   @breautek thank you for saving my time it was indeed one plugin that I used. 
 Removed it and resolved the issue.
   
   One last question how to use cordovaConfig.AGP_VERSION  these variables in 
build.gradle (root) ? 
   
   MY ROOT/build.gradle
   ```
   signingConfigs {
      release {
          storeFile file("/PATH/keystore")
          storePassword "****"
          keyAlias "****"
          keyPassword "****"
      }
   }
   
   buildscript {
       repositories {
           maven { url 'https://plugins.gradle.org/m2/'}
       }
      dependencies {
       // Add this line
         classpath 'com.google.gms:google-services:4.3.8'
     }
   }
   buildTypes {
           release {
               // (...)
               signingConfig signingConfigs.release
           }
   }
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to