Problems building after installing Studio

  • Replies:0
Eric Fowler
  • Forum posts: 1

Nov 30, 2015, 7:10:27 AM via Website

I was using Intellij with an Android plugin and was happy. Then I installed Android Studio and all heck broke loose.

My old projects won't build. Among other problems, I am seeing 'Cannot resolve symbol X' coming out of everything.
This code is lighting up red on TargetApi, ActionBar, and all the rest.


import android.annotation.TargetApi;
import android.app.ActionBar;
import android.app.Activity;
import android.content.Intent;
import android.os.Build;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;

Another project reports 'Cannot access java.lang.Comparable'.

What is going on?

More to the point, what tools can I use to figure out this kind of dependency problem in the Studio?

Reply