Android Studios doesn't understand Log function
Try this:
import android.util.Log;
public class DressDatabase {
Dress[] dresses;
private static final String TAG = "Testing: ";
public DressDatabase(){
dresses = new Dress[15];
Log.v(TAG, "String");
}
}