在android studio 3.0上启动新项目时出错

时间:2017-11-21 09:39:37

标签: android android-studio

我是android新手。我在android studio 3.0中启动了一个新的项目项目,但在Gradle构建错误后显示为:

package com.google.challenges; 
public class Answer {
    public static int answer(int[] x, int[] y) { 
        for (int n : x)  {
            if (!isPresent(n, y)) {
                return n;
            }
        }
        for (int n : y) {
            if (!isPresent(n, x)) {
                return n;
            }
        }
         return 0;
     }
     private static boolean isPresent(int n, int[] b){
        for (int i : b) {
            if (n == i) {
                return true;
            }
        }
        return false;
    }
}

Screen Shot of android studio

Error:Unable to resolve dependency for  
    ':app@debugAndroidTest/compileClasspath': 
        Could not resolve 
           javax.annotation:javax.annotation-api:1.2.

1 个答案:

答案 0 :(得分:0)

我认为这个博客可以回答你的问题。

  
    
      

我已经看到了在网络连接有些限制的环境中导致的错误。

    
  

check this out