Cannot find symbol com.thefinestartist.Base
Opened this issue · 2 comments
I am using
implementation 'com.thefinestartist:finestwebview:1.2.7' since a very long time , but after changing the gradle version to com.android.tools.build:gradle:3.4.2 I am getting the following error.
AppController.java:37: error: cannot find symbol
import com.thefinestartist.Base;
^
symbol: class Base
location: package com.thefinestartist
distributionUrl=https://services.gradle.org/distributions/gradle-5.1.1-all.zip
in gradle-wrapper.properties
any luck with this?
I did find a way around, check if this help.
Changes in project level gradle :
classpath 'com.android.tools.build:gradle:3.3.0'
(Instead of com.android.tools.build:gradle:3.4.2)
Changes in gradle-wrapper.properties :
distributionUrl=https://services.gradle.org/distributions/gradle-4.10.1-all.zip
(Instead of distributionUrl=https://services.gradle.org/distributions/gradle-5.1.1-all.zip)