Browse - Programming Tips - What changes do I need to make to my projects for Android Studio 3.1?Date: 2018mar27 OS: Android Language: gradle Q. What changes do I need to make to my projects for Android Studio 3.1? A.android { // buildToolsVersion "25.0.2" // Comment out ... }repositories { jcenter() google() // Add this }Rename these:compile -> implementationtestCompile -> testImplementationandroidTestCompile -> androidTestImplementationtestApi -> testApiandroidTestApi -> androidTestImplmentationYou're still getting an error about 'compile' upgrade google-services to 3.2classpath 'com.google.gms:google-services:3.2.0' Add a commentSign in to add a comment![]()
|