1 # 2 # Copyright (C) 2007 The Android Open Source Project 3 # 4 # Licensed under the Apache License, Version 2.0 (the "License"); 5 # you may not use this file except in compliance with the License. 6 # You may obtain a copy of the License at 7 # 8 # http://www.apache.org/licenses/LICENSE-2.0 9 # 10 # Unless required by applicable law or agreed to in writing, software 11 # distributed under the License is distributed on an "AS IS" BASIS, 12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 # See the License for the specific language governing permissions and 14 # limitations under the License. 15 # 16 17 # 18 # These are the files that comprise that SDK. 19 # 20 # The files that will go in the tools folder are setup through 21 # sdk/build/tools.atree 22 # This is to help when the sdk.git project is branched differently from 23 # the other projects. 24 # 25 26 ############################################################################## 27 # SDK Root folder 28 ############################################################################## 29 30 # the readme 31 development/docs/SDK_RELEASE_NOTES RELEASE_NOTES.html 32 33 # doc redirect 34 frameworks/base/docs/docs-redirect.html documentation.html 35 36 ############################################################################## 37 # Platform Tools Component 38 ############################################################################## 39 40 # host tools from out/host/$(HOST_OS)-$(HOST_ARCH)/ 41 bin/adb platform-tools/adb 42 bin/aapt platform-tools/aapt 43 bin/aidl platform-tools/aidl 44 # dx 45 bin/dx platform-tools/dx 46 bin/dexdump platform-tools/dexdump 47 framework/dx.jar platform-tools/lib/dx.jar 48 49 sdk/files/sdk_files_NOTICE.txt platform-tools/NOTICE.txt 50 development/sdk/plat_tools_source.properties platform-tools/source.properties 51 52 ############################################################################## 53 # Platform Component 54 ############################################################################## 55 56 # version files for the SDK updater, from sdk.git 57 development/sdk/platform_source.properties platforms/${PLATFORM_NAME}/source.properties 58 59 # copy build prop from out/.../sdk/ 60 sdk/sdk-build.prop platforms/${PLATFORM_NAME}/build.prop 61 62 # the uper-jar file that apps link against. This is the public API 63 out/target/common/obj/PACKAGING/android_jar_intermediates/android.jar platforms/${PLATFORM_NAME}/android.jar 64 65 # the aidl precompiled include 66 obj/framework.aidl platforms/${PLATFORM_NAME}/framework.aidl 67 68 # System images + Kernel 69 system.img platforms/${PLATFORM_NAME}/images/system.img 70 ramdisk.img platforms/${PLATFORM_NAME}/images/ramdisk.img 71 userdata.img platforms/${PLATFORM_NAME}/images/userdata.img 72 prebuilt/android-arm/kernel/kernel-qemu platforms/${PLATFORM_NAME}/images/kernel-qemu 73 74 # emulator skins from sdk.git 75 development/tools/emulator/skins/QVGA platforms/${PLATFORM_NAME}/skins/QVGA 76 development/tools/emulator/skins/WQVGA432 platforms/${PLATFORM_NAME}/skins/WQVGA432 77 development/tools/emulator/skins/WQVGA400 platforms/${PLATFORM_NAME}/skins/WQVGA400 78 development/tools/emulator/skins/HVGA platforms/${PLATFORM_NAME}/skins/HVGA 79 development/tools/emulator/skins/WVGA800 platforms/${PLATFORM_NAME}/skins/WVGA800 80 development/tools/emulator/skins/WVGA854 platforms/${PLATFORM_NAME}/skins/WVGA854 81 82 # Platform SDK properties 83 sdk/files/sdk.properties platforms/${PLATFORM_NAME}/sdk.properties 84 85 # sdk.git Ant templates for project files 86 sdk/templates/AndroidManifest.template platforms/${PLATFORM_NAME}/templates/AndroidManifest.template 87 sdk/templates/AndroidManifest.tests.template platforms/${PLATFORM_NAME}/templates/AndroidManifest.tests.template 88 sdk/templates/java_file.template platforms/${PLATFORM_NAME}/templates/java_file.template 89 sdk/templates/java_tests_file.template platforms/${PLATFORM_NAME}/templates/java_tests_file.template 90 sdk/templates/layout.template platforms/${PLATFORM_NAME}/templates/layout.template 91 sdk/templates/strings.template platforms/${PLATFORM_NAME}/templates/strings.template 92 sdk/templates/icon_ldpi.png platforms/${PLATFORM_NAME}/templates/icon_ldpi.png 93 sdk/templates/icon_mdpi.png platforms/${PLATFORM_NAME}/templates/icon_mdpi.png 94 sdk/templates/icon_hdpi.png platforms/${PLATFORM_NAME}/templates/icon_hdpi.png 95 96 # Eclipse Editors support 97 framework/layoutlib.jar platforms/${PLATFORM_NAME}/data/layoutlib.jar 98 frameworks/base/core/res/res platforms/${PLATFORM_NAME}/data/res 99 docs/activity_actions.txt platforms/${PLATFORM_NAME}/data/activity_actions.txt 100 docs/broadcast_actions.txt platforms/${PLATFORM_NAME}/data/broadcast_actions.txt 101 docs/service_actions.txt platforms/${PLATFORM_NAME}/data/service_actions.txt 102 docs/categories.txt platforms/${PLATFORM_NAME}/data/categories.txt 103 docs/widgets.txt platforms/${PLATFORM_NAME}/data/widgets.txt 104 docs/features.txt platforms/${PLATFORM_NAME}/data/features.txt 105 106 # fonts for layoutlib. 107 frameworks/base/data/fonts/fonts.xml platforms/${PLATFORM_NAME}/data/fonts/fonts.xml 108 frameworks/base/data/fonts/DroidSans.ttf platforms/${PLATFORM_NAME}/data/fonts/DroidSans.ttf 109 frameworks/base/data/fonts/DroidSans-Bold.ttf platforms/${PLATFORM_NAME}/data/fonts/DroidSans-Bold.ttf 110 frameworks/base/data/fonts/DroidSansMono.ttf platforms/${PLATFORM_NAME}/data/fonts/DroidSansMono.ttf 111 frameworks/base/data/fonts/DroidSerif-Bold.ttf platforms/${PLATFORM_NAME}/data/fonts/DroidSerif-Bold.ttf 112 frameworks/base/data/fonts/DroidSerif-BoldItalic.ttf platforms/${PLATFORM_NAME}/data/fonts/DroidSerif-BoldItalic.ttf 113 frameworks/base/data/fonts/DroidSerif-Italic.ttf platforms/${PLATFORM_NAME}/data/fonts/DroidSerif-Italic.ttf 114 frameworks/base/data/fonts/DroidSerif-Regular.ttf platforms/${PLATFORM_NAME}/data/fonts/DroidSerif-Regular.ttf 115 frameworks/base/data/fonts/DroidSansFallback.ttf platforms/${PLATFORM_NAME}/data/fonts/DroidSansFallback.ttf 116 frameworks/base/data/fonts/DroidSansJapanese.ttf platforms/${PLATFORM_NAME}/data/fonts/DroidSansJapanese.ttf 117 118 # NOTICE files are copied by build/core/Makefile from sdk.git 119 sdk/files/sdk_files_NOTICE.txt platforms/${PLATFORM_NAME}/templates/NOTICE.txt 120 sdk/files/sdk_files_NOTICE.txt platforms/${PLATFORM_NAME}/data/NOTICE.txt 121 sdk/files/sdk_files_NOTICE.txt platforms/${PLATFORM_NAME}/skins/NOTICE.txt 122 123 ############################################################################## 124 # Docs Component 125 ############################################################################## 126 127 # version files for the SDK updater, from sdk.git 128 development/sdk/doc_source.properties docs/source.properties 129 130 # the docs 131 docs/offline-sdk docs 132 frameworks/base/docs/docs-samples-redirect.html docs/samples/index.html 133 134 135 ############################################################################## 136 # Samples Component 137 ############################################################################## 138 139 # samples to include in the sdk samples package 140 # 141 # the list here should match the list of samples that we generate docs for, 142 # (see web_docs_sample_code_flags in frameworks/base/Android.mk) 143 development/apps/GestureBuilder samples/${PLATFORM_NAME}/GestureBuilder 144 development/samples/source.properties samples/${PLATFORM_NAME}/source.properties 145 # 146 # PLEASE KEEP THE SAMPLES IN ALPHABETICAL ORDER. 147 # 148 development/samples/AccessibilityService samples/${PLATFORM_NAME}/AccessibilityService 149 development/samples/AccelerometerPlay samples/${PLATFORM_NAME}/AccelerometerPlay 150 development/samples/ApiDemos samples/${PLATFORM_NAME}/ApiDemos 151 development/samples/BackupRestore samples/${PLATFORM_NAME}/BackupRestore 152 development/samples/BasicGLSurfaceView samples/${PLATFORM_NAME}/BasicGLSurfaceView 153 development/samples/BluetoothChat samples/${PLATFORM_NAME}/BluetoothChat 154 development/samples/ContactManager samples/${PLATFORM_NAME}/ContactManager 155 development/samples/CrossCompatibility samples/${PLATFORM_NAME}/CrossCompatibility 156 development/samples/CubeLiveWallpaper samples/${PLATFORM_NAME}/CubeLiveWallpaper 157 development/samples/Home samples/${PLATFORM_NAME}/Home 158 development/samples/JetBoy samples/${PLATFORM_NAME}/JetBoy 159 development/samples/LunarLander samples/${PLATFORM_NAME}/LunarLander 160 development/samples/MultiResolution samples/${PLATFORM_NAME}/MultiResolution 161 development/samples/NFCDemo samples/${PLATFORM_NAME}/NFCDemo 162 development/samples/NotePad samples/${PLATFORM_NAME}/NotePad 163 development/samples/SampleSyncAdapter samples/${PLATFORM_NAME}/SampleSyncAdapter 164 development/samples/SearchableDictionary samples/${PLATFORM_NAME}/SearchableDictionary 165 development/samples/SipDemo samples/${PLATFORM_NAME}/SipDemo 166 development/samples/SkeletonApp samples/${PLATFORM_NAME}/SkeletonApp 167 development/samples/Snake samples/${PLATFORM_NAME}/Snake 168 development/samples/SoftKeyboard samples/${PLATFORM_NAME}/SoftKeyboard 169 development/samples/Spinner samples/${PLATFORM_NAME}/Spinner 170 development/samples/SpinnerTest samples/${PLATFORM_NAME}/SpinnerTest 171 development/samples/TicTacToeLib samples/${PLATFORM_NAME}/TicTacToeLib 172 development/samples/TicTacToeMain samples/${PLATFORM_NAME}/TicTacToeMain 173 development/samples/VoiceRecognitionService samples/${PLATFORM_NAME}/VoiceRecognitionService 174 development/samples/Wiktionary samples/${PLATFORM_NAME}/Wiktionary 175 development/samples/WiktionarySimple samples/${PLATFORM_NAME}/WiktionarySimple 176 177 # NOTICE files are copied by build/core/Makefile from sdk.git 178 sdk/files/sdk_files_NOTICE.txt samples/${PLATFORM_NAME}/NOTICE.txt 179 180 ############################################################################## 181 # Samples Component 182 ############################################################################## 183 184 # empty add-on folder with just a readme copied from sdk.git 185 sdk/files/README_add-ons.txt add-ons/README.txt 186