Sources for Android API 26 Platfrom not found

因官方API 26的源码并没有给出, 所以暂时只能以其它方法代替

解决方案一: 使用系统已有的API

例如我系统上有 API 25.则更新module的gradle为


compileSdkVersion 25

buildToolsVersion "25.0.0"

defaultConfig {

minSdkVersion 15

targetSdkVersion 25

}

解决方案二:使用仍然使用API 26 ,但是使用已有的源码.

修改文件

    C:\Users\Administrator\.AndroidStudio2.3\config\options\jdk.table.xml 

找到API 26 的源码配置项,可以看到这里并没有配置源码,

    
        
    

配置修改后

    
        
            
        
    

最后完整的API26的配置

    
      
      
      
      
        
          
            
          
        
        
          
            
            
          
        
        
          
            
          
        
        
          
            
          
        
      
      
    

Sources for Android API Platfrom not found

你可能感兴趣的:(Sources for Android API 26 Platfrom not found)