Ad
Android Studio Reads The Wrong Name In Build.gradle
Android studio throws error after trying to build project:
ERROR: Could not find com.google.gms.google-services:4.1.0:.
This means that in line 'com.google.gms.google-services:4.1.0'
Android Studio reads 'com.google.gms.google-services:4.1.0:'
With :
at the end of line. Any ideas whats wrong ?
This is part of my gradle file
dependencies {
classpath 'com.google.gms.google-services:4.1.0'
classpath 'io.fabric.tools:gradle:1.28.1'
classpath 'com.android.tools.build:gradle:3.4.0'
classpath 'me.tatarka:gradle-retrolambda:3.7.0'
classpath 'io.realm:realm-gradle-plugin:5.5.0'
}
Ad
Answer
Look at this com.google.gms:google-services:4.1.0
and look at you have!
Ad
source: stackoverflow.com
Related Questions
- → should I choose reactjs+f7 or f7+vue.js?
- → Phonegap Android write to sd card
- → Local reference jquery script in nanohttpd (Android)
- → Click to navigate on mobile devices
- → How to allow api access to android or ios app only(laravel)?
- → Access the Camera and CameraRoll on Android using React Native?
- → React native change listening port
- → What is the default unit of style in React Native?
- → Google play market autocomplete icon
- → Warning: Each child in an array or iterator should have a unique "key" prop. Check the render method of `ListView`
- → Using Laravel with Genymotion
- → react native using like web-based ajax function
- → react native pdf View
Ad