如何在Android Studio中包含Android N源代码?

时间:2016-08-20 21:24:47

标签: android android-studio android-studio-2.2 android-7.0-nougat

在Android Studio内部开发时如何包含/下载Android N源代码?

Android SDK Manager中目前没有文档/源代码。

@Passer感谢您的公告,我设法下载了这样:

enter image description here

2 个答案:

答案 0 :(得分:1)

目前,没有可用的SDK文档和SDK源代码从SDK Manager下载,只有已编译的SDK和示例(请参阅GitHub)。但您可以使用N API ReferenceAndroid API Differences Report更新来计算代码。

更新:Google将Android 7.0推向了AOSP,因此您现在可以从SDK Manager下载API 24的来源

要在项目中使用N预览SDK,请按以下步骤更新 build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 'android-N'
    buildToolsVersion "24.0.1"

    defaultConfig {
        applicationId "com.alvenir.myapplication"
        minSdkVersion 'N'
        targetSdkVersion 'N'
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
}

答案 1 :(得分:1)

现在可以从SDK获得Android N的源代码。