First of all sorry for any fustration, im a newbie at coding for android. I came home trying to carry on with my application (which worked fine the last I tested it) and I got this error when I opened up android studio:
Cannot resolve symbol R
This occured on every activity, as they all contained R when I made a new activity. Ive tried to rebuild and clean build - both of those come up with the following error:
No resource found that matches the given name (at 'enabled' with value '@bool/use_provider').
Along with: Error:Execution failed for task ':mobile:processDebugResources'.
com.android.ide.common.process.ProcessException: Failed to execute aapt
Im genuinely confused as to why these errors have turned up out of nowhere. Any help is greatly appreciated as I have until friday (21/04) to complete my application, near impossible currently as I am unable to test it
EDIT
I was snooping around in the build.gradle for the wear device, (as my application makes use of both wear and mobile), and the following dependencies code was highlighted as broken:
compile 'com.google.android.support:wearable:2.0.0'
and
compile 'com.android.support.constraint:constraint-layout:1.0.2'
The first line said the following when highlighted:
Project depends on com.google.android.support:wearable:2.0.0, so it must also depend (as a provided dependency) on com.google.android.wearable:wearable:2.0.0
The second line said this:
All com.android.support libraries must use the exact same version specification (mixing versions can lead to runtime crashes). Found versions 25.3.0, 24.0.0, 23.0.1. Examples include com.android.support:support-compat:25.3.0 and com.android.support:support-v4:24.0.0
Again, any help would be appreciated