1

How do you include/download the Android N source code when developing inside Android Studio?

The documentation/source code isn't currently available inside the Android SDK Manager.

@Passer by Thanks for announcement, I managed to download like that :

enter image description here

4

2 回答 2

1

目前,没有可从 SDK Manager 下载的文档和 SDK 源代码,只有编译好的 SDK 和示例(参见GitHub)。但是您可以使用更新的 N API 参考Android API 差异报告来找出代码。

更新: 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'])
}
于 2016-08-20T23:36:07.583 回答
1

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

于 2016-08-24T22:12:13.403 回答