summaryrefslogtreecommitdiffstats
path: root/Android.mk
Commit message (Collapse)AuthorAgeFilesLines
* Adapt to new location of libcoreJean-Baptiste Queru2010-05-031-2/+2
| | | | Change-Id: Ie4fb163fb9f04a96f8412a996d43321accb28cc8
* Add generated html docs for SampleSyncAdapter and CubeLiveWallpaper. Add ↵Dirk Dougherty2010-02-091-0/+6
| | | | | | article for live wallpaper. Change-Id: Idbeda9a677c9772a8348146fe028083d9887a9d2
* SDK doc change: Increment the platform version var used in doc footer and ↵Dirk Dougherty2010-01-281-1/+1
| | | | | | | elsewhere. Bug: 2160782 Change-Id: I6e7721bca95cdc6565f3200d7609a4ea9b45cf9b
* Adding BusinessCard sample to Android.mk and to the Resources TOC on ↵Trevor Johns2010-01-111-0/+2
| | | | developer.android.com.
* add -since flag to droiddoc options for 7.xml,Scott Main2009-12-161-0/+1
| | | | to apply api filtering to the reference
* sdk doc change for esr: Add "resources" tab content. Fix links pointing to ↵Dirk Dougherty2009-12-141-20/+18
| | | | | | | the old locations. Change Android.mk to output samples files to resources/samples. Misc other fixes. Bug: 2160782 Change-Id: Ib1eb2e9e3fe3a7b2ad16387dbf888646a1195221
* am 6f95f461: Fix the dependencies to make online-sdk-docs.Ying Wang2009-12-121-0/+1
|\ | | | | | | | | | | | | Merge commit '6f95f461098d5b9e93212cf9cc7c7a6498eecf3a' into eclair * commit '6f95f461098d5b9e93212cf9cc7c7a6498eecf3a': Fix the dependencies to make online-sdk-docs.
| * Fix the dependencies to make online-sdk-docs.Ying Wang2009-12-101-0/+1
| | | | | | | | | | Without the framework library, 'make online-sdk-docs' can not find symbols in the framework library.
* | Add ContactManager, MultiResolution, Wiktionary, and WiktionarySimple to ↵Roman Nurik2009-12-101-3/+13
| | | | | | | | samples index. Also add latest samples zip file.
* | add BluetoothChat sample app to the dev guideScott Main2009-12-031-0/+2
| |
* | sdk doc change for esr: updates for android 1.6 r2, tools r4, api levels.Dirk Dougherty2009-11-231-5/+6
| | | | | | | | | | Bug: 2160782 Change-Id: Ia576dc9b2312d89bbe194d94640c3cc79216067b
* | am 5e7f1fbe: Merge change Id2ee762d into eclair-sdkScott Main2009-11-231-0/+1
|\ \ | |/ | | | | | | | | | | Merge commit '5e7f1fbe161d7015dde6e893351238749f906c8a' into eclair * commit '5e7f1fbe161d7015dde6e893351238749f906c8a': droiddoc change: add flag to offline docs build to signal
| * droiddoc change: add flag to offline docs build to signalScott Main2009-11-201-0/+1
| | | | | | | | | | | | | | | | | | | | that we're building offline docs so that we do not generate all of the web pages for the sample apps source code. This depends on change 33762 (sha I06c40454), meaning, this will break the build without that. Change-Id: Id2ee762de13f23c3da15d55e763c1838b11ac31c
* | am 820a4e7d: docs change for ESD: add samples html pages for offline docsScott Main2009-11-201-0/+1
|\ \ | |/ | | | | | | | | | | Merge commit '820a4e7dd6adeff162a92ca40ebe2f109561036b' into eclair * commit '820a4e7dd6adeff162a92ca40ebe2f109561036b': docs change for ESD: add samples html pages for offline docs
| * docs change for ESD: add samples html pages for offline docsScott Main2009-11-191-0/+1
| | | | | | | | | | bug: 2160782 Change-Id: I30fedc9e9b015ad035fa954ca0b1a19e846cca78
| * Explicitly specify that online-sdk depends on framework-res. (do not merge)Ying Wang2009-11-041-0/+2
| | | | | | | | this is integrated from Eclair to fix the mac build breakages.
* | Add BluetoothDevice to SDK AIDL list.Nick Pelly2009-11-041-0/+1
| | | | | | | | | | Bug: 2216702 Change-Id: I9490271ce4be465d5b3acc5e530feaf6e2fa3f57
* | Explicitly specify that online-sdk depends on framework-res.Ying Wang2009-10-271-0/+2
|/
* doc change: incorporate comments on SDK docs and structure.Dirk Dougherty2009-10-221-2/+2
| | | | Bug: 2160782
* doc change: Add docs for SDK. Support new modular structure. In Android.mk, ↵Dirk Dougherty2009-10-221-2/+12
| | | | | | | change @since level identifier to 5.xml, expose adt downloadable vars. Fix links that pointed to @sdkCurrent. Change-Id:I368345755dd753b1056fb06ff25e4b32f3020e4d Bug:2160782
* docs: setup new SDK documentation for 2.0 and change sdk build version to 2.0...Scott Main2009-10-141-1/+1
| | | | | | | | | | | move upgrading doc into a new guide for "updating" with the new manager tools and remove the previous updating doc from the dev guide. set up preliminary download page and guide for installing the full SDK. add the requirements doc in sdk/ for all general purposes. revise the download 'thank you' message. bug: 2160782
* Encourage developers to connect RFCOMM by UUID instead of Channel.Nick Pelly2009-10-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Hide createRfcommSocket(int channel) Add createRfcommSocketWithServiceRecord(UUID uuid) Rename listenUsingRfcomm(String,UUID) -> listenUsingRfcommWithServiceRecord(..) Now we have a complete API for developers to make peer-peer RFCOMM connections with hard-coding the limited (30) RFCOMM channels, instead using SDP lookup of an UUID. This commit addresses two serious bugs: - Do not throw IOException on accepting an incoming RFCOMM connection with BluetoothSocket. This was a regression from commit 24bb9b8af4ff6915 - Workaround failure of bluez to update SDP cache when channel changes by trying to use the same RFCOMM channel on the server every time, instead of picking server channels randomly. This is a pretty ugly workaround, and we are still trying to fix the caching issue - but with this workaround we are at least shippable and apps will work at least until they start colliding on the 30 RFCOMM channels. DrNo: eastham Bug: 2158900 Joke: What did the digital watch say to his mom? "Look mom no hands." Change-Id: Ia4879943b83afac06b6f1a3f2391cf1628afce7d
* Move android.bluetooth.ParcelUuid to android.os.ParcelUuidNick Pelly2009-09-281-0/+1
| | | | Change-Id: I564429d5c5b6a5372b6ff26a53b0d7e518b53631
* add Eclair to the droiddoc 'since' options so that weScott Main2009-09-171-0/+1
| | | | can see API Level diffs in the docs.
* do not merge. Revert "do not merge. Remove voicesearch-specific ↵Alex Gruenstein2009-09-161-0/+2
| | | | | | | | | | functionality from framework." This reverts commit f1b64f64ab088a3e8cd32ec31f61c958c61d19e5. It also updates RecognitionResult.java with changes made while it was in the voicesearch branch. Change-Id: Ibffbe25397628a01ec49393a23c1825cef116501
* am a6602f1f: Add docs for SDK update. Add redirects for preview files. ↵Dirk Dougherty2009-09-021-3/+3
|\ | | | | | | | | | | | | | | | | Manually integrate a few doc changes from cupcake. Merge commit 'a6602f1fe4590e48c760f21ce29a92629240c463' into eclair * commit 'a6602f1fe4590e48c760f21ce29a92629240c463': Add docs for SDK update.
| * Add docs for SDK update.Dirk Dougherty2009-09-021-3/+3
| | | | | | | | | | | | | | Add redirects for preview files. Manually integrate a few doc changes from cupcake. Change-Id:I524d7dbf929371ee501599229894640660f352ce
* | am a84a26d2: Merge change 23241 into donutScott Main2009-08-291-0/+2
|\ \ | |/ | | | | | | | | | | Merge commit 'a84a26d2afab503ed32e6ecc94acba46a5eb9eb3' into eclair * commit 'a84a26d2afab503ed32e6ecc94acba46a5eb9eb3': add searchable dictionary to html docs and dev guide nav
| * add searchable dictionary to html docs and dev guide navScott Main2009-08-291-0/+2
| | | | | | | | and add screenshots.
* | gps: Network initiated SUPLDanke Xie2009-08-271-0/+1
| | | | | | | | | | | | Initial contribution from Qualcomm. Signed-off-by: Mike Lockwood <lockwood@android.com>
* | am b385508d: Add more code samples to the online docs. Add build rules to ↵Scott Main2009-08-241-2/+10
|\ \ | |/ | | | | | | | | | | | | | | include the development samples in the droiddoc build process. Add all the sample screenshots to a new samples/images/ directory Revise the samples homepage to include links to new samples Merge commit 'b385508d89747e4c383979f1cc6fa2814b1cedbd' into eclair * commit 'b385508d89747e4c383979f1cc6fa2814b1cedbd': Add more code samples to the online docs.
| * Add more code samples to the online docs.Scott Main2009-08-241-2/+10
| | | | | | | | | | | | Add build rules to include the development samples in the droiddoc build process. Add all the sample screenshots to a new samples/images/ directory Revise the samples homepage to include links to new samples
* | Remove frameworks/base/im since these stuff are only used by IM appScott Su2009-08-231-2/+0
| |
* | do not merge. Remove voicesearch-specific functionality from framework.Alex Gruenstein2009-08-211-2/+0
| |
* | Bluetooth: API change.Nick Pelly2009-08-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Split BluetoothDevice into BluetoothDevice and BluetoothAdapter. BluetoothAdapter: Represents the local BT adapter. Operations on the local adapter (start a scan, etc). BluetoothDevice: Represents a remote BT device. Operations on remote devices (pair, connect, etc). IBluetoothDevice.aidl -> Bluetooth.aidl BluetoothDeviceService.java -> BluetoothDeviceService.java TODO: Javadoc
* | Very primitive wallpapers in a surface.Dianne Hackborn2009-08-081-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This is all of the basic pieces: - The WallpaperService now creates a surface with the window manager for its contents. - There is a simple service that displays a bitmap. - The wallpaper manager takes care of starting and stopping the service. - The window manager knows about wallpaper windows and how to layer them with the windows that want to be shown on top of wallpaper. Lots and lots of issues remain, but at this point you can actually write a wallpaper service, select it in the UI, and see it behind an activity.
* | resolved conflicts for merge of f11d7d55 to masterDirk Dougherty2009-08-061-9/+14
|\ \ | |/
| * Add support for preview SDK handling in doc templates. Add preview SDK docs.Dirk Dougherty2009-08-061-9/+14
| | | | | | | | Bug: 2031559
* | First bit of wallpaper work.Dianne Hackborn2009-08-051-2/+3
| | | | | | | | | | | | | | This is mostly refactoring, adding a new WallpaperManager class that takes care of the old wallpaper APIs on Context, so we don't need to pollute Context with various new wallpaper APIs as they are needed. Also adds the first little definition of a wallpaper service, which is not yet used or useful.
* | am 7a3e39ca: Merge change 9378 into donutAndroid (Google) Code Review2009-08-031-0/+6
|\ \ | |/ | | | | | | | | | | Merge commit '7a3e39cac812b6ec63fade9613bb0c1f04156fa0' * commit '7a3e39cac812b6ec63fade9613bb0c1f04156fa0': add "since" info for reference docs
| * add "since" info for reference docsScott Main2009-07-311-0/+6
| |
* | frameworks/base: Add PBAP supportJiafa Liu2009-07-261-0/+1
| | | | | | | | | | | | | | - Update according to comments - Add aidl support in frameworks for Settings to retrieve current PBAP transaction status. - Add status bar support for PBAP
* | am 11b6a29d: Merge change 8564 into donutAndroid (Google) Code Review2009-07-261-1/+1
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | Merge commit '11b6a29dfe380c97fa3df67a6b97ff3383592b58' * commit '11b6a29dfe380c97fa3df67a6b97ff3383592b58': AI 150594: change the homepage markup and styles to allow variable height in AI 150587: add a sitemap for translated docs, for submission to Webmaster Tools, AI 150541: roll the docs forward to 1.5 r3 AI 150538: add note that appwidget updates will wake the device and suggest an alarm AI 150536: Change the formatting of sdk redirect pages so that they are not language-specific. AI 150535: add the Videos page to the site
| * Merge doc change from cupcake: commit ↵Dirk Dougherty2009-07-241-1/+1
| |\ | | | | | | | | | 'a8d035ccf319e1aed685a1e1509681350f737fd1' into manualmerge
| | * AI 150541: roll the docs forward to 1.5 r3Dirk Dougherty2009-07-161-1/+1
| | | | | | | | | | | | | | | | | | BUG=1790234 Automated import of CL 150541
* | | am eec841f0: Merge change 8560 into donutAndroid (Google) Code Review2009-07-261-1/+2
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Merge commit 'eec841f0505c3aeb5b18e53f48b755ff69b78c15' * commit 'eec841f0505c3aeb5b18e53f48b755ff69b78c15': AI 150460: Add missing art files for menu_guidelines doc. AI 150397: turn off the right arrow in the carousel -- we only have 3 items. AI 150390: Roll the docs back to 1.5 r2, temporarily. AI 150381: Add localized content (ja2) to developer site. AI 150380: Add localized content (ja) for developer site. AI 150369: Add localized TOCs for developer site. AI 150351: Doc updates for Android 1.5 SDK r3.
| * | Merge doc changes from cupcake: commit ↵Dirk Dougherty2009-07-241-1/+2
| |\ \ | | |/ | | | | | | '5ae517d9659e96e9525406ffbce18dcacc3294bc' into manualmerge
| | * AI 150390: Roll the docs back to 1.5 r2, temporarily.Dirk Dougherty2009-07-081-1/+1
| | | | | | | | | | | | | | | | | | BUG=1790234 Automated import of CL 150390
| | * AI 150369: Add localized TOCs for developer site.Dirk Dougherty2009-07-071-1/+2
| | | | | | | | | | | | | | | | | | BUG=1910893 Automated import of CL 150369
| | * AI 150351: Doc updates for Android 1.5 SDK r3.Dirk Dougherty2009-07-071-1/+1
| | | | | | | | | | | | | | | | | | BUG=1790234 Automated import of CL 150351