★♥Deep In Androids World♥★ - XPERIA X8 General

I figured i would post this thread to help all of the new members and experienced understand the Android slang,there are actually a few i did'nt know the meaning of until i made this thread.I have compiled most of the terms,definitions and slang i could dig up,if theres anything i missed,let me know and i will add it to the thread,otherwise i will update this thread as new slang,terms and definitions are presented to me.
Apps2SD:A method of storing applications and cache on the device's microSD card.
ADB:Android Debug Bridge (adb) is a versatile command line tool that lets you communicate with an emulator instance or connected Android-powered device. It is a client-server program that includes three components:
*A client, which runs on your development machine. You can invoke a client from a shell by issuing an adb command. Other Android tools such as the ADT plugin and DDMS also create adb clients.
*A server, which runs as a background process on your development machine. The server manages communication between the client and the adb daemon running on an emulator or device.
*A daemon, which runs as a background process on each emulator or device instance.
Android:A Linux-based operating system for mobile devices such as HTC EVO.Versions are alphabetically codenamed after snacks: Donut, Eclair, Froyo, Gingerbread, Honeycomb, Ice Cream Sandwich, Jelly Bean.
AMOLED:Active Matrix Organic Light Emitting Diode. Basically, a very colorful, bright, display found in some smartphones.
APK:Android application package file. Each Android application is compiled and packaged in a single file that includes all of the application's code (.dex files), resources, assets, and manifest file. The application package file can have any name but must use the .apk extension. For example: myExampleAppname.apk. For convenience, an application package file is often referred to as an ".apk".
Alpha:The alpha phase of the release life cycle is the first phase to begin software testing (alpha is the first letter of the Greek alphabet, used as the number 1). In this phase, developers generally test the software using white box techniques. Additional validation is then performed using black box or gray box techniques, by another testing team. Moving to black box testing inside the organization is known as alpha release.[1]
Alpha software can be unstable and could cause crashes or data loss. The exception to this is when the alpha is available publicly (such as a pre-order bonus), in which developers normally push for stability so that their testers can test properly. External availability of alpha software is uncommon in proprietary software. However, open source software, in particular, often have publicly available alpha versions, often distributed as the raw source code of the software.
The alpha phase usually ends with a feature freeze, indicating that no more features will be added to the software. At this time, the software is said to be a feature complete.
Boot Animation:Boot animation is a term for a graphical representation of the boot process of the operating system.
Boot animation can be a simple visualisation of the scrolling boot messages in the console, but it can also present graphics or some combinations of both.
Unlike splash screens, boot screen or boot animation is not necessarily designed for marketing purposes, but can be to enhance the experience of the user as eye candy, or provide the user with messages (with an added advantage of color coding facility) to diagnose the state of the system.
Bootloader:This small program's only job is to load other data and programs which are then executed from RAM.Often, multiple-stage boot loaders are used, during which several programs of increasing complexity load one after the other in a process of chain loading.
Bootloop:When your system recycles over and over without entering the main OS.
Beta: is the software development phase following alpha. It generally begins when the software is feature complete. Software in the beta phase will generally have many more bugs in it than completed software, as well as speed/performance issues. The focus of beta testing is reducing impacts to users, often incorporating usability testing. The process of delivering a beta version to the users is called beta release and this is typically the first time that the software is available outside of the organization that developed it.
The users of a beta version are called beta testers. They are usually customers or prospective customers of the organization that develops the software, willing to test the software without charge, often receiving the final software free of charge or for a reduced price.
Beta version software is often useful for demonstrations and previews within an organization and to prospective customers. Some developers refer to this stage as a preview, prototype, technical preview (TP), or early access.
Some software is kept in perpetual beta¡ªwhere new features and functionality is continually added to the software without establishing a firm "final" release.
CPU:It stands for Central Processing Unit and handles all the complex mathematical formulas necessary to do everyday things like surfing the Internet.
Custom:Independent developers who like to customize their devices beyond the standard options provided often tend to release the fruits of their labor for the rest to enjoy, in form of custom ROMs.
Cache:A component that transparently stores data so that future requests for that data can be served faster. The data that is stored within a cache might be values that have been computed earlier or duplicates of original values that are stored elsewhere. If requested data is contained in the cache (cache hit), this request can be served by simply reading the cache, which is comparatively faster. Otherwise (cache miss), the data has to be recomputed or fetched from its original storage location, which is comparatively slower. Hence, the greater the number of requests that can be served from the cache, the faster the overall system performance becomes.
CDMA:Mobile phone standards called cdmaOne, CDMA2000 (the 3G evolution of cdmaOne) and WCDMA (the 3G standard used by GSM carriers), which are often referred to as simply CDMA, and use CDMA as an underlying channel access method.
CIQ:Carrier IQ. A piece of preinstalled software that runs with elevated access in the background of portable devices by default and records everything. Potentially can be exploited to steal information.
ClockwordMod: Also called as CWM is a popular custom recovery for Android phones and tablets developed by Koushik Dutta (Koush), a well*known name in the Android dev community. ClockworkMod recovery allows you to perform several advanced recovery, restoration, installation and maintenance operations on your Android device. It allows user to install custom ROMs, kernels, themes, mods and more however, installing custom kernel from CWM is not yet available to Xperia family.
Dual Core:A dual core processor is a central processing unit (CPU) that has two separate cores on the same die, each with its own cache time. It essentially is two microprocessors in one. This type of CPU is widely available from many manufacturers. Other types of multi-core processors also have been developed, including quad-core processors with four cores each, hexa-core processors with six, octa-core processors with eight and many-core processors with an even larger number of cores.
Dalvik:The Android platform's virtual machine. The Dalvik VM is an interpreter-only virtual machine that executes files in the Dalvik Executable (.dex) format, a format that is optimized for efficient storage and memory-mappable execution.
Dalvik Cache:Writable cache that contains the optimized bytecode of all apk files (apps) on your Android device. Having the information in it's own cache makes applications load faster and perform better.
EXT2:The ext2 or second extended filesystem is a file system for the Linux kernel. It was initially designed by R¨¦my Card as a replacement for the extended file system (ext).
ext2 was the default filesystem in several Linux distributions, including Debian and Red Hat Linux, until supplanted more recently by ext3, which is almost completely compatible with ext2 and is a journaling file system. ext2 is still the filesystem of choice for flash-based storage media (such as SD cards, and USB flash drives) since its lack of a journal minimizes the number of writes and flash devices have only a limited number of write cycles. Recent kernels, however, support a journal-less mode of ext4, which would offer the same benefit along with a number of ext4-specific benefits.
EXT3:Third extended filesystem, is a journaled file system that is commonly used by the Linux kernel. It is the default file system for many popular Linux distributions, including Debian. Stephen Tweedie first revealed that he was working on extending ext2 in Journaling the Linux ext2fs Filesystem in a 1998 paper and later in a February 1999 kernel mailing list posting, and the filesystem was merged with the mainline Linux kernel in November 2001 from 2.4.15 onward.Its main advantage over ext2 is journaling, which improves reliability and eliminates the need to check the file system after an unclean shutdown. Its successor is ext4.
EXT4:It was born as a series of backward compatible extensions to ext3, many of them originally developed by Cluster File Systems for the Lustre file system between 2003 and 2006, meant to extend storage limits and add other performance improvements.However, other Linux kernel developers opposed accepting extensions to ext3 for stability reasons,and proposed to fork the source code of ext3, rename it as ext4, and do all the development there, without affecting the current ext3 users. This proposal was accepted, and on 28 June 2006, Theodore Ts'o, the ext3 maintainer, announced the new plan of development for ext4.
FC/FC's:Short for "force close," meaning an app that has crashed.
Fastboot:A diagnostic protocol used primarily to modify the flash filesystem in Android smartphones from another computer over a USB connection. It is part of the Android Debug Bridge library.
Utilizing the Fastboot protocol requires that the device be started in a boot loader or Second Program Loader mode in which only the most basic hardware initialization is performed. After enabling the protocol on the device itself it will accept any command sent to it over USB via a command line. Some of most commonly used fastboot commands include:
*flash - Overwrites a partition in flash with a binary image stored on the host computer.
*erase - Erases a partition in flash.
*1reboot - Reboots the device into the either the main operating system or the system recovery partition.
*1devices - Displays a list of all devices (with Serial #) connected to the host computer.
Flashing:The ROM memory used in smartphones and tablets etc. is often same as flash memory found in SD cards and USB flash drives, simply optimized for better speed and performance while running the operating system.
Hotspot:A spot that offers Internet access over a wireless local area network through the use of a router connected to a link to an Internet service provider. Hotspots typically use Wi-Fi technology.You can connect wifi campatible devices to it.
HDMI:High-Definition Multimedia Interface) is a compact audio/video interface for transmitting encrypted uncompressed digital data.It is a digital alternative to consumer analog standards, such as radio frequency (RF) coaxial cable, composite video, S-Video, SCART, component video, D-Terminal, or VGA (also called D-sub or DE-15F). HDMI connects digital audio/video sources (such as set-top boxes, DVD players, HD DVD players, Blu-ray Disc players, AVCHD camcorders, personal computers (PCs), video game consoles (such as the PlayStation 3 and Xbox 360), AV receivers, tablet computers, and mobile phones) to compatible digital audio devices, computer monitors, video projectors, and digital televisions.
Hboot:Its mainly responsible for checking and initializing the hardware and starting the phones software. It can also be used for flashing official software releases, as well as a few other things. HBoot can be compared to the BIOS on a computer.
HAVS:a control system that dynamically adjusts the voltage based on CPU load. This has proven to be a battery saver, but it can actually have the opposite effect when multiple control systems are operating (like setCPU).
JIT:The Just-in-Time Compiler. Released with Android 2.2, it's a method of greatly speeding up apps in Android on the software side.
Kang:Someone writes a code,someone else modifies the code to make their own release,its concidered a kang release.
Kernel:A kernel is a layer of code that allows the OS and applications to interface with your phone's hardware. The degree in which you can access your phone's hardware features depends on the quality of code in the kernel. The homebrew (rooting) community for HTC has made several kernel code improvements that give us additional features from our hardware that the stock kernel does not. When you flash a custom ROM, you automatically get a kernel. But you can also flash a standalone kernel ROM on top of the existing one, effectively overwriting it. These days, the difference in custom kernels is less about new features and more about alternate configurations. Choosing a custom kernel is basically choosing one that works best with your ROM.
Launcher:Collectively, the part of the Android user interface on home screens that lets you launch apps, make phone calls, etc. Is built in to Android, or can be purchased in the Android Market.
LCD Density: Pixel density is a measurement of the resolution of devices in various contexts; typically computer displays, image scanners, and digital camera image sensors.
First of all you need to understand that the Android User Interface uses something called a "display independent pixel" or a "dip" (yes, it's confusing because the density settings are in "dots per inch" or "dpi" which are considered the same as "ppi" or "pixels per inch" as well).
The default LCD Density setting on Android is 160 dpi. As far as the operating system is concerned 1 dip @ 160 dpi = 1 screen pixel. It doesn't mean that's actually true, but you've gotta start somewhere. In my opinion it would have been a lot nicer if they'd chosen 100 dpi because then it would be an easy percentage thing, but they didn't so we're stuck with this formula.
Mod:The act of modifying a piece of hardware or software or anything else for that matter, to perform a function not originally conceived or intended by the designer.
Nandroid:To backup the current running rom.
Nightly:A build that is performed at the end of each day of development. If you use a continuous integration server, it will generally be configured to build the code and run the unit tests on every check in. At the end of each day you may want to run more extensive tests, regression test and integration tests for example, which take too long to run on each check in and these would be triggered after the nightly build. If you have a full continuously delivery pipeline the nightly build may also be used to deploy the built code to environments for user testing.
Open GL:An open source 3D graphics library used in many devices, including Android devices.
Open & Closed Beta: Developers release either a closed beta or an open beta; closed beta versions are released to a select group of individuals for a user test and are invitation only, while open betas are from a larger group to the general public and anyone interested. The testers report any bugs that they find, and sometimes suggest additional features they think should be available in the final version.
Overclock:To increase the speed of your CPU.
Partition:The phone's internal memory (not the SD card) is solid-state (flash) memory, AKA NAND. It can be partitioned much like a normal hard drive can be partitioned. The bootloader exists in its own partition. Recovery is another partition; radio, system, cache, etc are all partitions.
Here are the standard partitions on an Android phone:
/misc - not sure what this is for.
/boot - bootloader, kernel
/recovery - holds the recovery program (either clockworkmod or RA recovery for a rooted Evo)
/system - operating system goes here: Android, Sense, boot animation, Sprint crapware, busybox, etc
/cache - cached data from OS usage
/data - user applications, data, settings, etc.
The below partitions are not android-specific. They are tied to the hardware of the phone, but the kernel may have code allowing Android to interact with said hardware.
/radio - the phone's radio firmware, controls cellular, data, GPS, bluetooth.
/wimax - firmware for Sprint's flavor of 4G, WiMax.
PRL:The Preferred Roaming List, basically a way of telling your phone which towers to connect to first.
RUU:a complete software package released by HTC, it can contain many things they are trying to update. Radio, ROM, bootloader, etc... Installing an ruu is like installing an image on a hard drive it wipes the phone and installs the image. It will wipe everything data and all so if you install one be prepared.
Recovery Mode:A small separate operating mode you can boot your device into, used for device administration. Two popular custom recovery modes are Amon Ra and Clockwork.
Rom/Firmware:Read-Only Memory and technically speaking, it refers to the internal storage of a device, which is supposed to contain the operating system instructions that needn¡¯t be modified at all during the device¡¯s normal operation.
Radios: On the HTC side of things,the radios persist of:
*WiFi, which operates at 2.4-5ghz depending on what channel it's running
*Cellular/3G, which carries voice and data
*4G/WiMAX, which only carries data
*GPS, which is receive-only
*Bluetooth, which talks to WiiMotes and headsets
Flashing a radio means updating the code that controls the phones way of sending and recieving a signal.
Ram: (Random Access Memory) A group of memory chips, typically of the dynamic RAM (DRAM) type, which function as the computer's primary workspace. When personal computers first came on the market in the late 1970s, 64KB (64 kilobytes) of RAM was the upper limit. Today, 64MB (64 megabytes) of SDRAM is entry level for a desktop computer, a thousand times as much (see SDRAM).
The "random" in RAM means that the contents of each byte of storage in the chip can be directly accessed without regard to the bytes before or after it. This is also true of other types of memory chips, including ROMs and PROMs. However, unlike ROMs and PROMs, RAM chips require power to maintain their content, which is why you must save your data onto disk before you turn the computer off. To learn about the types of RAM chips and how to upgrade your memory, see memory module. To learn how memory is used to process data, see computer or memory. See also dynamic RAM and static RAM.
Recovery:RecoverySystem contains methods for interacting with the Android recovery system (the separate partition that can be used to install system updates,wipe user data,etc).
Root:The first level of a folder.
Rooting:A process allowing users of mobile phones, tablet PCs, and other devices running the Android operating system to attain privileged control (known as "root access") within Android's subsystem. Rooting is often performed with the goal of overcoming limitations that carriers and hardware manufacturers put on some devices, resulting in the ability to alter or replace system applications and settings, run specialized apps that require administrator-level permissions, or perform other operations that are otherwise inaccessible to a normal Android user. Rooting is analogous to jailbreaking devices running the Apple iOS operating system or the Sony PlayStation 3. On Android, rooting can also facilitate the complete removal and replacement of the device's operating system.
SBC: (the ability to charge your battery beyond the default safe limit). The concept is similar to overclocking a processor: you're overriding the safety limits established to achieve additional performance. The benefit here is that you may gain more use of your battery per charge. The drawback is that you can damage the battery and significantly reduce its longevity. Some kernels claim they are using a safe technique to prevent battery damage. Just be aware of the potential risks.
Sideloading:It means installing applications without using the official Android Market.
Splash Screen:A splash screen is an image that appears while android is loading.Splash screens cover the entire screen or simply a rectangle near the center of the screen. The splash screens of operating systems and some applications that expect to be run full-screen usually cover the entire screen.
Superuser/SU: On many computer operating systems, the superuser is a special user account used for system administration. Depending on the operating system, the actual name of this account might be: root, administrator or supervisor.
Normal work on such a system is done using ordinary user accounts, and because these do not have the ability to make system-wide changes any viruses and other malware - or simple user errors - do not have the ability to adversly affect a whole system. In organizations, administrative privileges are often reserved for authorized experienced individuals.
Script:The Scripting Layer for Android (abridged as SL4A, and previously named Android Scripting Environment or ASE) is a library that allows the creation and running of scripts written in various scripting languages directly on Android devices. SL4A is designed for developers and is still alpha quality software.
These scripts have access to many of the APIs available to normal Java Android applications, but with a simplified interface. Scripts can be run interactively in a terminal, in the background, or via Locale.
SDK: (SDK or "devkit") is typically a set of software development tools that allows for the creation of applications for a certain software package, software framework, hardware platform, computer system, video game console, operating system, or similar platform.
Stock:This is the operating system in its default form, without any modifications made to it except for any device-specific support required to run it on the particular device.
S-On:Security on,means no acces to the phones operating system.
S-Off:Security was exploited,now have access to the operating system.
Tethering:Means sharing the Internet connection of an Internet-capable mobile phone with other devices. This sharing can be offered over a wireless LAN (Wi-Fi), Bluetooth, or by physical connection using a cable. In the case of tethering over wireless LAN, the feature may be branded as a mobile hotspot.The Internet-connected mobile phone acts as a portable router when providing tethering services to others.
Userspace(Governor):This governor, exceptionally rare for the world of mobile devices, allows any program executed by the user to set the CPU's operating frequency. This governor is more common amongst servers or desktop PCs where an application (like a power profile app) needs privileges to set the CPU clockspeed.
Underclock:To reduce the speed of your CPU.
Undervolt:Undervolting means taking some of the voltage from the CPU which in return gives a longer battery life and lower temperature during intensive use of the CPU.
USB:Stands for Universal Serial Bus. Is a method of connecting devices to a computer. Most smartphones now use microUSB cables to charge and sync.
Updater Script:When Android devices install updates via 'update.zip' files using recovery mode they have to perform a wide range of functions on files and permissions. Instead of using a minimal shell such as {b,d,c}sh the Android designers decided to create a small functional language that can be extended by device manufacturers if necessary. Since the Android "Donut" release (v1.6) the scripting language is called Edify and is defined primarily in the bootable/recovery/{edify,edifyscripting,updater} directories of the Android source-code tree.
Wireless N:Wireless N technology increases wireless internet connection. Wireless 'N' routers also work with Wireless 'G' and 'B' wireless adapters.
WiiMax: (Worldwide Interoperability for Microwave Access) is a communication technology for wirelessly delivering high-speed Internet service to large geographical areas.
YAFFS:Yaffs1 is the first version of this file system and works on NAND chips that have 512 byte pages 16 byte spare (OOB;Out-Of-Band) areas.[clarification needed] These older chips also generally allow 2 or 3 write cycles per page,which YAFFS takes advantage of - i.e. dirty pages are marked by writing to a specific spare area byte.
Newer NAND flash chips have larger pages, 2048 bytes 64 bytes spare areas, and stricter write requirements.Each page within an erase block (128 kilobytes) must be written to in sequential order, and each page must be written only once.YAFFS2 was designed to accommodate these newer chips.YAFFS2 is based on the YAFFS1 source code,with the major difference being that internal structures are not fixed to assume 512 byte sizing,and a block sequence number is placed on each written page. In this way older pages can be logically overwritten without violating the "write once" rule.[clarification needed]
YAFFS is a robust log-structured file system that holds data integrity as a high priority.A secondary YAFFS goal is high performance.YAFFS will typically outperform most alternatives.It is also designed to be portable and has been used on Linux, WinCE, pSOS, eCos,ThreadX and various special-purpose OSes.A variant 'YAFFS/Direct' is used in situations where there is no OS, embedded OSes and bootloaders: it has the same core filesystem but simpler interfacing to the OS and NAND flash hardware.
Zipalign: An archive alignment tool introduced first time with 1.6 Android SDK (software development kit). It optimizes the way an Android application package (APK) is packaged. Doing so enables the Android operating system to interact with the application more efficiently, and hence has the potential to make the application and overall the whole system much faster. Execution time is minimized for zipaligned applications, resulting is lesser amount of RAM consumption when running the APK.
All credit of this information goes to Diablo67

CONTINUED FROM PAGE 2
Baseband: is an adjective that describes signals and systems whose range of frequencies is measured from close to 0 hertz to a cut-off frequency, a maximum bandwidth or highest signal frequency; it is sometimes used as a noun for a band of frequencies starting close to zero. Baseband can often be considered a synonym to lowpass or non-modulated, and antonym to passband, bandpass, carrier-modulated or radio frequency (RF).
Brazilianwax(Governor):Similar to smartassV2. More aggressive ramping, so more performance, less battery
BFS:Brain Fxck Scheduler for Linux was created by veteran kernel programmer Con Kolivas and has been reported to improve responsiveness on light-NUMA (non-uniform memory access) Linux mobile devices and desktop computers with fewer than 16 cores.
Bloatware:Software or 'apps' that you don't need, but come preinstalled to a device's /system partition, meaning that you cannot remove them unless the device has been rooted. Usually, these are apps are sponsored by a company and included by a carrier for profit. For example, the Photobucket app included on the G2 by TMobile.
Compile:It translates (a android program)from a high-level language into another language, usually machine language.
Conservative(Governor):This biases the phone to prefer the lowest possible clockspeed as often as possible. In other words, a larger and more persistent load must be placed on the CPU before the conservative governor will be prompted to raise the CPU clockspeed. Depending on how the developer has implemented this governor, and the minimum clockspeed chosen by the user, the conservative governor can introduce choppy performance. On the other hand, it can be good for battery life.
The Conservative Governor is also frequently described as a "slow OnDemand," if that helps to give you a more complete picture of its functionality.
Decompile:To convert executable (ready-to-run) program code (sometimes called object code ) into some form of higher-level programming language so that it can be read by a human.
Deodex: Deodexing is basically repackaging of these APKs in a certain way, such that they are reassembled into classes.dex files. By doing that, all pieces of an application package are put together back in one place, thus eliminating the worry of a modified APK conflicting with some separate odexed parts.
GNU:A recursive acronym for “GNU's Not Unix!”; it is pronounced g-noo, as one syllable with no vowel sound between the g and the n. The GNU Project was launched in 1984 to develop a complete Unix-like operating system which is free software: the GNU system. “Free software” is a matter of liberty, not price. To understand the concept, you should think of “free” as in “free speech”, not as in “free beer”.
Governor:It controls the speed of the CPU.
Hotplug(Governor):The Hotplug governor performs very similarly to the OnDemand governor, with the added benefit of being more precise about how it steps down through the kernel's frequency table as the governor measures the user's CPU load. However, the Hotplug governor's defining feature is its ability to turn unused CPU cores off during periods of low CPU utilization. This is known as "hotplugging."
API:An application programming interface (API) is a specification intended to be used as an interface by software components to communicate with each other. An API may include specifications for routines, data structures, object classes, and variables. An API specification can take many forms, including an International Standard such as POSIX, vendor documentation such as the Microsoft Windows API, the libraries of a programming language, e.g. Standard Template Library in C++ or Java API.
An API differs from an application binary interface (ABI) in that an API is source code based while an ABI is a binary interface. For instance POSIX is an API, while the Linux Standard Base is an ABI.
Android Resolution:Android runs on a variety of devices that offer different screen sizes and densities. For applications, the Android system provides a consistent development environment across devices and handles most of the work to adjust each application's user interface to the screen on which it is displayed. At the same time, the system provides APIs that allow you to control your application's UI for specific screen sizes and densities, in order to optimize your UI design for different screen configurations. For example, you might want a UI for tablets that's different from the UI for handsets.
LDPI:Resources for low-density (ldpi) screens (~120dpi).
MDPI:Resources for medium-density (mdpi) screens (~160dpi). (This is the baseline density.)
HDPI:Resources for high-density (hdpi) screens (~240dpi).
XHDPI:Resources for extra high-density (xhdpi) screens (~320dpi).
NODPI:Resources for all densities. These are density-independent resources. The system does not scale resources tagged with this qualifier, regardless of the current screen's density.
TVDPI:Resources for screens somewhere between mdpi and hdpi; approximately 213dpi. This is not considered a "primary" density group. It is mostly intended for televisions and most apps shouldn't need it—providing mdpi and hdpi resources is sufficient for most apps and the system will scale them as appropriate. If you find it necessary to provide tvdpi resources, you should size them at a factor of 1.33*mdpi. For example, a 100px x 100px image for mdpi screens should be 133px x 133px for tvdpi.
Intellidemand(Governor):Intellidemand aka Intelligent Ondemand from Faux is yet another governor that's based on ondemand. Unlike what some users believe, this governor is not the replacement for OC Daemon (Having different governors for sleep and awake). The original intellidemand behaves differently according to GPU usage. When GPU is really busy (gaming, maps, benchmarking, etc) intellidemand behaves like ondemand. When GPU is 'idling' (or moderately busy), intellidemand limits max frequency to a step depending on frequencies available in your device/kernel for saving battery. This is called browsing mode. We can see some 'traces' of interactive governor here. Frequency scale-up decision is made based on idling time of CPU.
XDA-Developers was founded in 2003 as a small forum for users of original Windows Mobile PDAs, who wanted to try to improve or otherwise modify them. This led to a gradually growing community forming that worked to upgrade their devices beyond the last version given officially by the manufacturer of their device.
In 2008, XDA-Developers introduced Android-based phones to the site for the first time, with the T-Mobile G1.From that point onwards, XDA started to grow much more rapidly, as Android gained marketshare and momentum.
With a relatively open platform like Android, there will always be some people who want to do more! XDA and sites like it serve as a platform for those who want to improve their phones even further, enabling them to do so and to share their improvements.
With Android being open source, thescope for updating and tweaking your phone or tablet is much greater than ever possible with any other major mobile platform.Some people come to XDA-Developers to learn how toroottheir phone. Rooting your phone grants you the ability to access and change the files that control how your device operates. For example, you could remove pre-installedapplications with root access. You could also possibly improve the battery life of a device by tweaking or optimising the system, or installing a new Linux kernel.Others come to XDA-Developers to change how their device looks. Perhaps they dislike the user interfacethemeused by their OEM, or perhaps they simply prefer different colors to the default colours used.Perhaps, most commonly, people come to XDA-Developers to upgrade their phone to the latest version of Android, after their manufacturer or mobile carrierhas abandoned them on an older version, with no official way to reach the latest version of Android. This has led to a variety of “aftermarket” firmware distributions (often called “ROMs”), which aim to provide updates for devices no longer supported by their OEMs.
There are now over 4.6 million registered users on XDA (and many more reading the site)

CONTINUED FROM 3
1.0:Android 1.0, the first commercial version of the software, was released on 23 September 2008.The first Android device, the HTC Dream (G1), incorporated the following Android 1.0 features:
•Android Market application download and updates through the Market app
•Web browser to show, zoom and pan full HTML and XHTML web pages – multiple pages show as windows ("cards")
•Camera support – however this version lacked the option to change the camera's resolution, white balance, quality, etc.
•Folders allowing the grouping of a number of app icons into a single folder icon on the Home screen.
•Access to web email servers, supporting POP3, IMAP4, and SMTP.
•Gmail synchronization with the Gmail app
•Google Contacts synchronization with the People app
•Google Calendar synchronization with the Calendar app
•Google Maps with Latitude and Street View to view maps and satellite imagery, as well as find local business and obtain driving directions using GPS
•Google Sync, allowing management of over-the-air synchronization of Gmail, People, and Calendar
•Google Search, allowing users to search the Internet and phone apps, contacts, calendar, etc
•Google Talk instant messaging
•Instant messaging, text messaging, and MMS
•Media Player, enabling management, importing, and playback of media files – however, this version lacked video and stereo Bluetooth support
•Notifications appear in the Status bar, with options to set ringtone, LED or vibration alerts
•Voice Dialer allows dialing and placing of phone calls without typing a name or number
•Wallpaper allows the user to set the background image or photo behind the Home screen icons and widgets
•YouTube video player
•Other apps include: Alarm Clock, Calculator, Dialer (Phone), Home screen (launcher), Pictures (Gallery), and Settings.
•Wi-Fi and Bluetooth support
1.1: 9 February 2009, the Android 1.1 update was released, initially for the T-Mobile G1 only. The update resolved bugs, changed the API and added a number of other features:
•Details and reviews available when a user searches for businesses on Maps
•Longer in-call screen timeout default when using the speakerphone, plus ability to show/hide dialpad
•Ability to save attachments in messages
•Support added for marquee in system layouts
Cupcake: 30 April 2009, the Android 1.5 update, dubbed Cupcake, was released, based on Linux kernel 2.6.27.The update included several new features and UI amendments:
•Support for third-party virtual keyboards with text prediction and user dictionary for custom words
•Support for Widgets - miniature application views that can be embedded in other applications (such as the Home screen) and receive periodic updates
•Video recording and playback in MPEG-4 and 3GP formats
•Auto-pairing and stereo support for Bluetooth added (A2DP and AVRCP profiles)
•Copy and paste features added to web browser
•User pictures shown for Favorites in Contacts
•Specific date/time stamp shown for events in call log, and one-touch access to a contact card from call log event
•Animated screen transitions
•Ability to upload videos to YouTube
•Ability to upload photos to Picasa
Donut: 15 September 2009, the Android 1.6 SDK – dubbed Donut – was released, based on Linux kernel 2.6.29.Included in the update were numerous new features:
•Voice and text entry search enhanced to include bookmark history, contacts, and the web
•Ability for developers to include their content in search results
•Multi-lingual speech synthesis engine to allow any Android application to "speak" a string of text
•Easier searching and ability to view app screenshots in Android Market
•Gallery, camera and camcorder more fully integrated, with faster camera access
•Ability for users to select multiple photos for deletion
•Updated technology support for CDMA/EVDO, 802.1x, VPNs, and a text-to-speech engine
•Support for WVGA screen resolutions
•Speed improvements in searching and camera applications
•Expanded Gesture framework and new GestureBuilder development tool
Eclair: 26 October 2009, the Android 2.0 SDK – codenamed Eclair – was released, based on Linux kernel 2.6.29.Changes included:
•Expanded Account sync, allowing users to add multiple accounts to a device for email- and contact-synchronization
•Exchange email support, with combined inbox to browse email from multiple accounts in one page
•Bluetooth 2.1 support
•Ability to tap a Contacts photo and select to call, SMS, or email the person
•Ability to search all saved SMS and MMS messages, with delete oldest messages in a conversation automatically deleted when a defined limit is reached
•Numerous new camera features, including flash support, digital zoom, scene mode, white balance, color effect and macro focus
•Improved typing speed on virtual keyboard, with smarter dictionary that learns from word usage and includes contact names as suggestions
•Refreshed browser UI with bookmark thumbnails, double-tap zoom and support for HTML5
•Calendar agenda view enhanced, showing attending status for each invitee, and ability to invite new guests to events
•Optimized hardware speed and revamped UI
•Support for more screen sizes and resolutions, with better contrast ratio
•Improved Google Maps 3.1.2
•MotionEvent class enhanced to track multi-touch events
•Addition of live wallpapers, allowing the animation of home-screen background images to show movement
2.0.1:The Android 2.0.1 SDK was released on 3 December 2009.It was a minor platform release deployable to Android-powered handsets, including minor API changes, bug fixes and framework behavioral changes
2.1:The 2.1 SDK was released on 12 January 2010.It was a minor platform release deployable to Android-powered handsets, including minor amendments to the API and bug fixes.
Froyo: 20 May 2010, the Android 2.2 (Froyo) SDK was released, based on Linux kernel 2.6.32.Its features included:
•Speed, memory, and performance optimizations
•Additional application speed improvements, implemented through JIT compilation
•Integration of Chrome's V8 JavaScript engine into the Browser application
•Support for the Android Cloud to Device Messaging (C2DM) service, enabling push notifications
•Improved Microsoft Exchange support, including security policies, auto-discovery, GAL look-up, calendar synchronization and remote wipe
•Improved application launcher with shortcuts to Phone and Browser applications
•USB tethering and Wi-Fi hotspot functionality
•Added an option to disable data access over mobile network
•Updated Market application with batch and automatic update features
•Quick switching between multiple keyboard languages and their dictionaries
•Voice dialing and contact sharing over Bluetooth
•Support for Bluetooth-enabled car and desk docks
•Support for numeric and alphanumeric passwords
•Support for file upload fields in the Browser application
•Support for installing applications to the expandable memory
•Adobe Flash support
•Support for extra-high-PPI screens (320 ppi), such as 4" 720p
•Gallery allows users to view picture stacks using a zoom gesture
2.2.1:The Android 2.2.1 update was released on 18 January 2011, and included a number of bug fixes, security updates, and performance improvements.
2.2.2:The Android 2.2.2 update was released on 22 January 2011, and fixed minor bugs, including SMS routing issues that affected the Nexus One.
2.2.3:The Android 2.2.3 update was released on 21 November 2011, and consisted of two security patches.
Gingerbread: 6 December 2010, the Android 2.3 (Gingerbread) SDK was released, based on Linux kernel 2.6.35.Changes included:
•Updated user interface design with increased simplicity and speed
•Support for extra-large screen sizes and resolutions (WXGA and higher)
•Native support for SIP VoIP internet telephony
•Faster, more intuitive text input in virtual keyboard, with improved accuracy,better suggested text and voice input mode
•Enhanced copy/paste functionality, allowing users to select a word by press-hold, copy, and paste
•Support for Near Field Communication (NFC), allowing the user to read an NFC tag embedded in a poster, sticker, or advertisement
•New audio effects such as reverb, equalization, headphone virtualization, and bass boost
•New Download Manager, giving users easy access to any file downloaded from the browser, email, or another application
•Support for multiple cameras on the device, including a front-facing camera, if available
•Support for WebM/VP8 video playback, and AAC audio encoding
•Improved power management with a more active role in managing apps that are keeping the device awake for too long
•Enhanced support for native code development
•Switched from YAFFS to ext4 on newer devices
•Audio, graphical, and input enhancements for game developers
•Concurrent garbage collection for increased performance
•Native support for more sensors (such as gyroscopes and barometers)
2.2.3:Released on 9 February 2011, Android 2.3.3 included several improvements and API fixes
2.3.4:Version 2.3.4 introduced support for voice or video chat using Google Talk.
2.3.5:Released on 25 July 2011, Android 2.3.5 included a number of system enhancements:
•Improved network performance for the Nexus S 4G, among other fixes and improvements
•Fixed Bluetooth bug on Samsung Galaxy S
•Improved Gmail application
•Shadow animations for list scrolling
•Camera software enhancements
•Improved battery efficiency
2.3.6:Released on 2 September 2011, this version fixed a voice search bug. The 2.3.6 update had the side-effect of impairing the Wi-Fi hotspot functionality of many Canadian Nexus S phones. Google acknowledged this problem and fixed it in late September.
2.3.7:Android 2.3.7 introduced Google Wallet support for the Nexus S 4G.
Honeycomb: 22 February 2011, the Android 3.0 (Honeycomb) SDK – the first tablet-only Android update – was released, based on Linux kernel 2.6.36.The first device featuring this version, the Motorola Xoom tablet, was released on 24 February 2011.Changes included:
•Optimized tablet support with a new virtual and “holographic” user interface
•Added System Bar, featuring quick access to notifications, status, and soft navigation buttons, available at the bottom of the screen
•Added Action Bar, giving access to contextual options, navigation, widgets, or other types of content at the top of the screen
•Simplified multitasking – tapping Recent Apps in the System Bar allows users to see snapshots of the tasks underway and quickly jump from one app to another
•Redesigned keyboard, making typing fast, efficient and accurate on larger screen sizes
•Simplified, more intuitive copy/paste interface
•Multiple browser tabs replacing browser windows, plus form auto-fill and a new “incognito” mode allowing anonymous browsing
•Quick access to camera exposure, focus, flash, zoom, front-facing camera, time-lapse, and more
•Ability to view albums and other collections in full-screen mode in Gallery, with easy access to thumbnails for other photos
•New two-pane Contacts UI and Fast Scroll to let users easily organize and locate contacts
•New two-pane Email UI to make viewing and organizing messages more efficient, allowing users to select one or more messages
•Support for video chat using Google Talk
•Hardware acceleration
•Support for multi-core processors
•Ability to encrypt all user data
3.1:The 3.1 SDK was released on 10 May 2011.Changes included:
•UI refinements
•Connectivity for USB accessories
•Expanded Recent Apps list
•Resizable Home screen widgets
•Support for external keyboards and pointing devices
•Support for joysticks and gamepads
•Support for FLAC audio playback
•High-performance Wi-Fi lock, maintaining high-performance Wi-Fi connections when device screen is off
•Support for HTTP proxy for each connected Wi-Fi access point
3.2:The 3.2 SDK was released on 15 July 2011,first appearing on Huawei's MediaPad tablet.Changes included:
•Improved hardware support, including optimizations for a wider range of tablets
•Increased ability of apps to access files on the SD card, e.g. for synchronization
•Compatibility display mode for apps that have not been optimized for tablet screen resolutions
•New display support functions, giving developers more control over display appearance on different Android devices
3.2.1:The Android 3.2.1 update was released on 20 September 2011, and included a number of amendments:
•Bug fixes and minor security, stability and Wi-Fi improvements
•Update to Android Market with automatic updates and easier-to-read Terms and Condition text
•Update to Google Books
•Improved Adobe Flash support in browser
•Improved Chinese handwriting prediction
3.2.2:The 3.2.2 update was released on 30 August 2011, and included bug fixes and other minor improvements for the Motorola Xoom 4G.
Android 4.0 – codenamed Ice Cream Sandwich, and based on Linux kernel 3.0.1– was previewed at the May 2011 Google I/O event,and officially launched at the Galaxy Nexus and Ice Cream Sandwich release event on 19 October 2011.
•Enhanced speed and performance
•Virtual buttons in the UI, in place of capacitive or physical buttons
•Separation of widgets in a new tab, listed in a similar manner to apps
•Easier-to-create folders, with a drag-and-drop style
•A customizable launcher
•Improved visual voicemail with the ability to speed up or slow down voicemail messages
•Pinch-to-zoom functionality in the calendar
•Offline search, a two-line preview, and new action bar at the bottom of the Gmail app
•Ability to swipe left or right to switch between Gmail conversations
•Integrated screenshot capture (accomplished by holding down the Power and Volume-Down buttons)
•Improved error correction on the keyboard
•Ability to access apps directly from lock screen (similar to HTC Sense 3.x)
•Improved copy and paste functionality
•Better voice integration and continuous, real-time speech to text dictation
•Face Unlock, a feature that allows users to unlock handsets using facial recognition software
•New tabbed web browser, allowing up to 16 tabs
•Automatic syncing of browser with users' Chrome bookmarks
•A new typeface family for the UI, Roboto
•Data Usage section in settings that lets users set warnings when they approach a certain usage limit, and disable data use when the limit is exceeded
•Ability to shut down apps that are using data in the background
•Improved camera app with zero shutter lag, time lapse settings, panorama mode, and the ability to zoom while recording
•Built-in photo editor
•New gallery layout, organized by location and person
•Refreshed "People" app with social network integration, status updates and hi-res images
•Android Beam, a near-field communication feature allowing the rapid short-range exchange of web bookmarks, contact info, directions, YouTube videos and other data
•Hardware acceleration of the UI
•Resizeable widgets – already part of Android 3.1 for tablets, but new for cellphones
•Wi-Fi Direct
•1080p video recording for stock Android devices
4.0.2:The Android 4.0.2 update was released on 28 November 2011,and fixed minor bugs on the Verizon Galaxy Nexus,the US launch of which was later delayed until December 2011.
4.0.3:The Android 4.0.3 update was first released on 16 December 2011.It included a number of bug fixes and optimizations, and offered improvements to graphics, databases, spell-checking and Bluetooth functionality,along with new APIs for developers,including a social stream API in the Contacts provider. Other features included Calendar provider enhancements, new camera apps enhancing video stabilization and QVGA resolution, and accessibility refinements such as improved content access for screen readers.
4.1 Jelly Bean:The report also mentions some interesting features that originally planned in the presence of ice Cream Sandwich is likely to be postponed and will be displayed on the jelly bean.
Reportedly,this is because these features are not ready until it came time to release the ice cream sandwiches.Google itself has not confirmed anything regarding this information.
Android 4.1, Jelly Bean, is the fastest and smoothest version of Android yet. Jelly Bean improves on the simplicity and beauty of Android 4.0, and introduces a new Google search experience on Android.
Jelly Bean features improved performance throughout the system, including faster orientation changes, faster responses when switching between recent apps, and smoother and more consistent rendering across the system through vsync and triple buffering.
Jelly Bean has more reactive and uniform touch responses, and makes your device even more responsive by boosting your device's CPU instantly when you touch the screen, and turns it down when you don't need it to improve battery life.
MIUI
(pronounced "Me You I", a play on the common abbreviation of the words user interface as UI),developed by Xiaomi Tech, is an aftermarket firmware for cell phones based on the open-source Android operating system. It features a heavily-modified user interface that does away with the Android app drawer and has drawn comparisons with Apple's iOS.It includes additional functionality not found in stock Android, including toggles on the notification pull-down, new music, gallery, and camera apps, and an altered phone dialer that displays matching contacts as a user enters a number.
MIUI is based on Android 2.3.7 and CyanogenMod 7.1 sources, and was initially developed in the Chinese language by Chinese startup Xiaomi.Xiaomi added a number of apps to enhance the basic framework; those include MITalk (a Blackberry Messenger clone),MINotes,MIBackup,MIMusic,and MIGallery.MIUI is made up of two parts, MI and UI, where UI stands for User Interface and MI, as stated by Xiaomi CEO Lei Jun, stands for Mobile Internet and Mission Impossible.
The modified operating system has been criticized for being similar to iOS.Due to the fact that MIUI is developed in China, some features that are not relevant to the Chinese market, such as WiMax support, are unavailable on MIUI, and without access to the source code, it is not possible for 3rd parties to easily add this support.
AOSP
The Android Open Source Project (AOSP) is led by Google, and is tasked with the maintenance and development of Android.According to the project "The goal of the Android Open Source Project is to create a successful real-world product that improves the mobile experience for end users."AOSP also maintains the Android Compatibility Program, defining an "Android compatible" device "as one that can run any application written by third-party developers using the Android SDK and NDK", to prevent incompatible Android implementations.The compatibility program is also optional and free of charge, with the Compatibility Test Suite also free and open-source.
Sense
HTC Sense is a graphical user interface developed by HTC Corporation for mobile devices running Android, Brew and Windows Mobile.Based on the TouchFLO 3D design,HTC has referred to HTC Sense as both a user interface in itself and also as a user experience layer on top of TouchFLO 3D.Announced June 24, 2009, the first phone running Android to feature HTC Sense was the HTC Hero,and the first Windows Phone to feature HTC Sense (an updated TouchFLO) was the HTC HD2,announced October 6, 2009.
At the Mobile World Congress 2010, HTC showed their new updated HTC Sense UI to debut on the HTC Desire and HTC Legend, with an upgrade available for the Hero and Magic. The new version is based upon Android 2.1 and has new interface features such as the Friend Stream widget (which aggregates all Twitter, Facebook and Flickr information) and Leap, which allows access to all the home screens at once.
Smartphones including the HTC EVO 3D and the HTC Sensation feature HTC Sense 3.0, which has major visual and functional changes to HTC Sense, including a new lock screen which allows users to access their favorite applications directly. Only HTC Sensation and later devices will run HTC Sense 3.0, but older devices will still get some of the new features from HTC Sense 3.0 via an over-the-air update.[citation needed]
While the Windows Mobile version of Sense is the successor to TouchFLO 3D, with information featured on separate tabs, the Android version presents information through Android desktop widgets and applications, and includes launcher, app drawer, and lock screen replacements.
Cyanogenmod:is an open source replacement firmware for smart phones and tablet computers based on the Android mobile operating system. It offers features and options not found in the official firmware distributed by vendors of these devices.
Features supported by CyanogenMod include native theming support, FLAC audio codec support, a large Access Point Name list, an OpenVPN client, an enhanced reboot menu, support for Wi-Fi, Bluetooth, and USB tethering, CPU overclocking and other performance enhancements, soft buttons and other "tablet tweaks", toggles in the notification pull-down (such as Wi-Fi, Bluetooth and GPS), app permissions management, as well as other interface enhancements. According to its developers, CyanogenMod does not contain spyware or bloatware.CyanogenMod is also stated to increase performance and reliability compared with official firmware releases.
CyanogenMod is developed as free and open source software based on the official releases of Android by Google, with added original and third-party code.
Although only a subset of total CyanogenMod users elect to report their use of the firmware, as of 24 August 2012, CyanogenMod has recorded over 3.1 million installs on a multitude of devices.
AOKP:AOKP stands for Android Open Kang Project. It is a custom ROM distribution for many Android devices. The name is a play on the word “kang” and AOSP (Android Open Source Project). The name was sort of a joke, but it just stuck, just like our infatuation with unicorns.
AOKP Versions
We have two different kinds of releases — Builds and Milestones. Builds are considered “nightlies” — they are released usually every week or two (sometimes even sooner, if there are any major bugs to fix). We have no set release schedule, we release Builds and Milestones as we feel they are ready.
Milestones: Most stable releases.
Builds: Newest releases with bleeding edge features and code.
Pacman: Paranoid + Aokp + Cyanogen = PACman
ROMs are compiled from source for Xperia Ray which is a msm7x30 device and is ported to Doubleshot [Mytouch 4g Slide] . This is a minimal port but with a lot of work done. It is still based on AOSP+CM source codes. The ROM packs all the tweaks from the three super ROMs into one.
4.2:Google was expected to announce Jelly Bean 4.2 at an event in New York City on 29 October 2012, but the event was cancelled due to Hurricane Sandy.Instead of rescheduling the live event, Google announced the new version with a press release, under the slogan "A new flavor of Jelly Bean". The first devices to run Android 4.2 were LG's Nexus 4 and Samsung's Nexus 10, which were released on 13 November 2012.
Android 4.2 takes the speed and simplicity of Jelly Bean to a different level – a completely new camera experience that’s beyond smart, a new form of typing that helps you power through your messages, and much more.

Continued From page 4
Screen size: Actual physical size, measured as the screen's diagonal.
For simplicity, Android groups all actual screen sizes into four generalized sizes: small, normal, large, and extra large.
Screen density
The quantity of pixels within a physical area of the screen; usually referred to as dpi (dots per inch). For example, a "low" density screen has fewer pixels within a given physical area, compared to a "normal" or "high" density screen.
For simplicity, Android groups all actual screen densities into four generalized densities: low, medium, high, and extra high.
Orientation:The orientation of the screen from the user's point of view. This is either landscape or portrait, meaning that the screen's aspect ratio is either wide or tall, respectively. Be aware that not only do different devices operate in different orientations by default, but the orientation can change at runtime when the user rotates the device.
Pixel Density:is a measurement of the resolution of devices in various contexts: typically computer displays, image scanners, and digital camera image sensors.
Density-Independent Pixel (dp):A virtual pixel unit that you should use when defining UI layout, to express layout dimensions or position in a density-independent way.
The density-independent pixel is equivalent to one physical pixel on a 160 dpi screen, which is the baseline density assumed by the system for a "medium" density screen. At runtime, the system transparently handles any scaling of the dp units, as necessary, based on the actual density of the screen in use. The conversion of dp units to screen pixels is simple: px = dp * (dpi / 160). For example, on a 240 dpi screen, 1 dp equals 1.5 physical pixels. You should always use dp units when defining your application's UI, to ensure proper display of your UI on screens with different densities.
Android Resolution:Android runs on a variety of devices that offer different screen sizes and densities. For applications, the Android system provides a consistent development environment across devices and handles most of the work to adjust each application's user interface to the screen on which it is displayed. At the same time, the system provides APIs that allow you to control your application's UI for specific screen sizes and densities, in order to optimize your UI design for different screen configurations. For example, you might want a UI for tablets that's different from the UI for handsets.
LDPI:Resources for low-density (ldpi) screens (~120dpi).
MDPI:Resources for medium-density (mdpi) screens (~160dpi).
HDPI:Resources for high-density (hdpi) screens (~240dpi).
XHDPI:Resources for extra high-density (xhdpi) screens (~320dpi).
NODPI:Resources for all densities. These are density-independent resources. The system does not scale resources tagged with this qualifier, regardless of the current screen's density.
TVDPI:Resources for screens somewhere between mdpi and hdpi; approximately 213dpi. This is not considered a "primary" density group. It is mostly intended for televisions and most apps shouldn't need it—providing mdpi and hdpi resources is sufficient for most apps and the system will scale them as appropriate. If you find it necessary to provide tvdpi resources, you should size them at a factor of 1.33*mdpi. For example, a 100px x 100px image for mdpi screens should be 133px x 133px for tvdpi.
Dex: Dalvik Executable. Compiled Android application code file. Android programs are compiled into .dex files, which are in turn zipped into a single .apk file on the device. .dex files can be created by automatically translating compiled applications written in the Java programming language.
Action:An action is a description of something that an Intent sender wants done. An action is a string value assigned to an Intent. Action strings can be defined by Android or by a third-party developer. For example, android.intent.action.VIEW for a Web URL, or com.example.rumbler.SHAKE_PHONE for a custom application to vibrate the phone.
Activity:An activity is a single screen in an application, with supporting Java code, derived from the Activity class. Most commonly, an activity is visibly represented by a full screen window that can receive and handle UI events and perform complex tasks, because of the Window it uses to render its window. Though an Activity is typically full screen, it can also be floating or transparent.
AndroidManifest.xml:Every application must have an AndroidManifest.xml file (with precisely that name) in its root directory of the source tree. The manifest presents essential information about the application to the Android system, information the system must have before it can run any of the application’s code.
Application:From a component perspective, an Android application consists of one or more activities, services, listeners, and intent receivers. From a source file perspective, an Android application consists of code, resources, assets, and a single manifest. During compilation, these files are packaged in a single file called an application package file (.apk).
Broadcast Receiver:An application class that listens for Intents that are broadcast, rather than being sent to a single target application/activity. The system delivers a broadcast Intent to all interested broadcast receivers, which handle the Intent sequentially.
Canvas:A drawing surface that handles compositing of the actual bits against a Bitmap or Surface object. It has methods for standard computer drawing of bitmaps, lines, circles, rectangles, text, and so on, and is bound to a Bitmap or Surface. Canvas is the simplest, easiest way to draw 2D objects on the screen. However, it does not support hardware acceleration, as OpenGL ES does. The base class is Canvas.
Content Provider:A data-abstraction layer that you can use to safely expose your application’s data to other applications. A content provider is built on the ContentProvider class, which handles content query strings of a specific format to return data in a specific format.
Data:The data partition on the device contains the user-related data, such as installed applications and settings for those apps, as well as your SQLite database containing Android settings and messages. Normally, the directory /data/app is off-limits through the ‘adb shell’ command, as well as other terminal applications that can run on the device, since this directory contains the apk files for apps. On a rooted phone, using the ‘su’ command will allow full access to this partition. This partition can be flashed using Fastboot or Nandroid.
DDMS: Dalvik Debug Monitor Service, a GUI debugging application included with the SDK. It provides screen capture, log dump, and process examination capabilities. If you are developing in Eclipse using the ADT Plugin, DDMS is integrated into your development environment.
Dialog:A floating window that that acts as a lightweight form. A dialog can have button controls only and is intended to perform a simple action (such as button choice) and perhaps return a value. A dialog is not intended to persist in the history stack, contain complex layout, or perform complex actions. Android provides a default simple dialog for you with optional buttons, though you can define your own dialog layout. The base class for dialogs is Dialog.
Drawable:A compiled visual resource that can be used as a background, title, or other part of the screen. A drawable is typically loaded into another UI element, for example as a background image. A drawable is not able to receive events, but does assign various other properties such as “state” and scheduling, to enable subclasses such as animation objects or image libraries. Many drawable objects are loaded from drawable resource files — xml or bitmap files that describe the image. Drawable resources are compiled into subclasses of android.graphics.drawable.
Flash Memory:Flash memory, also known as NAND memory, is nonvolatile – keeping information even when the device is off. Flash memory in the device is equivalent to the hard drive in a computer. This is where the device’s operating system (sometimes called firmware) and applications are stored. Flash memory is slower than RAM, but is (almost always) faster than SD cards.
Logcat:While in adb (see ADB), type in “adb logcat > logcat.txt”. This will help you when resolving issues and bugs. There are also tools in the market you can use for this, one of which is called aLogcat. It can show different categories (severity of errors ect.) too, which is something adb logcat cannot do.
Playstore(Old:Market):The market on Android is a place where you can purchase or download applications for your phone. When you download through the market, the installation process is transparent (as in you don’t have to deal with the APK files yourself), and there is the facility to rate apps and post comments which are visible to other users. Frequently, the developers of apps actually take onboard the feedback in the comments (mainly the smaller apps with slightly less feedback to sift through).
When an app is installed from the market, it is copied to ‘/data/app/apkname.apk’, as the act of ‘installing’. An app can store its data in the folder ‘/data/data/apkname’. It is possible to clear the data stored by an application by using the Manage Applications feature in Settings | Applications | Manage Applications.
Intent:A message object that you can use to launch or communicate with other applications/activities asynchronously. An Intent object is an instance of Intent. It includes several criteria fields that you can supply, to determine what application/activity receives the Intent and what the receiver does when handling the Intent. Available criteria include the desired action, a category, a data string, the MIME type of the data, a handling class, and others. An application sends an Intent to the Android system, rather than sending it directly to another application/activity. The application can send the Intent to a single target application or it can send it as a broadcast, which can in turn be handled by multiple applications sequentially. The Android system is responsible for resolving the best-available receiver for each Intent, based on the criteria supplied in the Intent and the Intent Filters defined by other applications.
Intent Filter:A message object that you can use to launch or communicate with other applications/activities asynchronously. An Intent object is an instance of Intent. It includes several criteria fields that you can supply, to determine what application/activity receives the Intent and what the receiver does when handling the Intent. Available criteria include the desired action, a category, a data string, the MIME type of the data, a handling class, and others. An application sends an Intent to the Android system, rather than sending it directly to another application/activity. The application can send the Intent to a single target application or it can send it as a broadcast, which can in turn be handled by multiple applications sequentially. The Android system is responsible for resolving the best-available receiver for each Intent, based on the criteria supplied in the Intent and the Intent Filters defined by other applications.
Layout Resource:An XML file that describes the layout of an Activity screen.
Manifest File:An XML file that each application must define, to describe the application’s package name, version, components (activities, intent filters, services), imported libraries, and describes the various activities, and so on.
9-Patch:A resizeable bitmap resource that can be used for backgrounds or other images on the device.
Odex: Odex stands for “Optimized Dalvik Executable” file. The Android system, as identified above, utilizes compressed data stored in the .apk file at runtime. To speed up this process, the most critical elements of application will be placed uncompressed in an .odex file, thus enabling the Android OS to quickly interpret that important information before it continues to parse the rest of the application. Stock ROMs will come from the manufacturer as “odexed”, meaning that the application(s) will have a .apk file and an .odex file, i.e. Calendar.apk and Calendar.odex.
Resources:Nonprogrammatic application components that are external to the compiled application code, but which can be loaded from application code using a well-known reference format. Android supports a variety of resource types, but a typical application’s resources would consist of UI strings, UI layout components, graphics or other media files, and so on. An application uses resources to efficiently support localization and varied device profiles and states. For example, an application would include a separate set of resources for each supported local or device type, and it could include layout resources that are specific to the current screen orientation (landscape or portrait). The resources of an application are always stored in the res/* subfolders of the project.
Service:An object of class Service that runs in the background (without any UI presence) to perform various persistent actions, such as playing music or monitoring network activity.
SPL:The Secondary Program Loader is a piece of bootcode that initiates the startup of the phone, displaying the initial splash screen for the device, and loading the initial files from ROM.
It checks to see if a button combination is pressed on bootup (such as that to enter Recovery Mode or the bootloader), and loads the relevant system software. If no special instruction is given by holding keys, the bootloader loads the normal system software by initializing the boot process from the boot partition.
Flashing your SPL is risky, as the process failing will probably result in a broken, or bricked phone, since the SPL is executed very early on in the boot process, and any error here will prevent access to the recovery or bootloader features.
If you do flash the SPL though, it unlocks the Carrier-ID CID from the device, essentially allowing any RUU to be installed to the device, and allows flashing alternative or custom bootscreens.
Surface:An object of type Surface representing a block of memory that gets composited to the screen. A Surface holds a Canvas object for drawing, and provides various helper methods to draw layers and resize the surface. You should not use this class directly; use SurfaceView instead.
SurfaceView:A View object that wraps a Surface for drawing, and exposes methods to specify its size and format dynamically. A SurfaceView provides a way to draw independently of the UI thread for resource-intensive operations (such as games or camera previews), but it uses extra memory as a result. SurfaceView supports both Canvas and OpenGL ES graphics. The base class is SurfaceView.
System:The /system directory on your device is where the main operational software for the Android OS is stored. It has a number of sub-directories of which /system/apps (where application apk’s are stored) is probably the only one users would have need to access. The /system folder is read-only by default and needs remounted via ‘adb’ to allow write access.
Theme:A set of properties (text size, background color, and so on) bundled together to define various default display settings. Android provides a few standard themes, listed in R.style (starting with “Theme_”).
Update.zip:An update.zip (does not have to actually be called update.zip if you have a patched Recovery image) is a file containing some files which will be copied to the phone’s internal memory. Normally, a new system update or ROM is stored in the file, but update.zip files are commonly used to install modifications such as themes or applications that are installed on the System partition to prevent uninstallation.
To flash one of these files, which commonly would contain a custom ROM for your phone, you would boot your phone to a patched recovery image (whether using Fastboot, or the home+power method if you have a patched Recovery image flashed on your phone)
Update.zip files are cryptographically signed, and more information on how to sign your own files can be found online.
URI's:Android uses URI strings as the basis for requesting data in a content provider (such as to retrieve a list of contacts) and for requesting actions in an Intent (such as opening a Web page in a browser). The URI scheme and format is specialized according to the type of use, and an application can handle specific URI schemes and strings in any way it wants. Some URI schemes are reserved by system components. For example, requests for data from a content provider must use the content://. In an Intent, a URI using an http:// scheme will be handled by the browser.
View:An object that draws to a rectangular area on the screen and handles click, keystroke, and other interaction events. A View is a base class for most layout components of an Activity or Dialog screen (text boxes, windows, and so on). It receives calls from its parent object (see viewgroup, below)to draw itself, and informs its parent object about where and how big it would like to be (which may or may not be respected by the parent).
ViewGroup:A container object that groups a set of child Views. The viewgroup is responsible for deciding where child views are positioned and how large they can be, as well as for calling each to draw itself when appropriate. Some viewgroups are invisible and are for layout only, while others have an intrinsic UI (for instance, a scrolling list box). Viewgroups are all in the widget package, but extend ViewGroup.
Widget: One of a set of fully implemented View subclasses that render form elements and other UI components, such as a text box or popup menu. Because a widget is fully implemented, it handles measuring and drawing itself and responding to screen events. Widgets are all in the android.widget package.
Window:In an Android application, an object derived from the abstract class Window that specifies the elements of a generic window, such as the look and feel (title bar text, location and content of menus, and so on). Dialog and Activity use an implementation of this class to render a window. You do not need to implement this class or use windows in your application.
Credits
Diablo67 for great information

Android:A Linux-based operating system for mobile devices such as HTC EVO.Versions are alphabetically codenamed after snacks: Donut, Eclair, Froyo, Gingerbread, Honeycomb, Ice Cream Sandwich, Jelly Donut.
correct that...jellybean
Dual Core:A dual core processor is a central processing unit (CPU) that has two separate cores on the same die, each with its own cache
time
and in these following lines....you forgot to put a space b/w : and (...so they turned into smily ...correct that part too
WiiMaxWorldwide Interoperability for Microwave Access)
RamRandom Access Memory)
SBCthe ability to charge your battery bey
Superuser/SUn many computer operating systems,
DKSDK or "devkit") is typically a set of software development tools
Radiosn the HTC side of things,the radios persist of:
i look a glance at it..seems great info....will read the whole guide properly when i get some free time.. :good::good::good:
ask for sticky to this thread

awesome thread:laugh:
it should be sticky

i wrote material for a similar guide some time ago.. but never made the thread.. so sharing some additional info you can add..
Bootloader: The bootloader is code that is executed before any Operating System starts to run. Bootloaders basically package the instructions to boot operating system kernel and most of them also have their own debugging or modification environment.As the bootloader starts before any piece of software on your device, it makes it extremely processor specific and so there is a wide range of ROMs available because of presence of different hardwares. Every manufacturer has their own version of bootloader.
Kernel: The kernel is the main component of most computer operating systems; it is a bridge between applications and the actual data processing done at the hardware level. Kernels have different types but for android users we talk only about monolithic kernels or simply modified linux kernels. Monolithic kernels execute all the operating system code in the same address space to increase the performance of the system.
ClockwordMod: Also called as CWM is a popular custom recovery for Android phones and tablets developed by Koushik Dutta (Koush), a well*known name in the Android dev community. ClockworkMod recovery allows you to perform several advanced recovery, restoration, installation and maintenance operations on your Android device. It allows user to install custom ROMs, kernels, themes, mods and more however, installing custom kernel from CWM is not yet available to Xperia family.
if need more info on any topic drop me a PM...

Thanks Cnc_Rocks for finding mistakes
Bootoader & kernel info is written already will add clockworkmod info only
Sent from my SONY WALKMAN using JellySony Rom

A summary of important terms regarding our phone, xperia x8, would be better. This is x8 general forum, anyone interested in general android knowledge should go to android general forum...
As mentioned in this thread, here is original post by Diablo67, the only thing I see here is Ctrl C + Ctrl V.

I just want to post because most off them are unaware & dint read that forum & I already gave credits to diablo67
Sent from my SONY WALKMAN using JellySony Rom

darkfrmr said:
A summary of important terms regarding our phone, xperia x8, would be better. This is x8 general forum, anyone interested in general android knowledge should go to android general forum...
As mentioned in this thread, here is original post by Diablo67, the only thing I see here is Ctrl C + Ctrl V.
Click to expand...
Click to collapse
well.. he gave proper credit to that guy.. and there is nothing wrong in copy paste.. it wasnt any development stuff.. and it is always better to have such a thread posted.. it benefits new comers and some lazy members :good:
Summary of important terms regarding our phone and any other phone is basically the same......because they all run android.. only differences are the cwm/kernel/flashtool and the unlocking method

CnC-ROCK said:
well.. he gave proper credit to that guy.. and there is nothing wrong in copy paste.. it wasnt any development stuff.. and it is always better to have such a thread posted.. it benefits new comers and some lazy members :good:
Summary of important terms regarding our phone and any other phone is basically the same......because they all run android.. only differences are the cwm/kernel/flashtool and the unlocking method
Click to expand...
Click to collapse
Xactly what i mean
:thumbup:Cnc_Rock
Sent from my SONY WALKMAN using JellySony Rom

here is idea...if you want it to be more readable
use this code for titles (Apps2SD,ADB,Android....) just replace "put title here" with title
HTML:
[B][SIZE="3"][COLOR="SeaGreen"][U]put title here[/U][/COLOR][/SIZE][/B]

Thanks taj..
Great thread here....
sent from my phone using hands and brain...
---------- Post added at 12:51 PM ---------- Previous post was at 12:48 PM ----------
Hey taj.
Correct your op, some words look like. " "
sent from my phone using hands and brain...

it's f___ing awesome! Very good!

very nice
minimum edition

Thread updated with xda info
Sent from my SONY WALKMAN using JellySony Rom

You forgot Android 1.6 - Donut.
Sent from my iPhone using Tapatalk

Royal Eagle said:
You forgot Android 1.6 - Donut.
Sent from my iPhone using Tapatalk
Click to expand...
Click to collapse
Its already there dude
Watchout carefully
Sent from my SONY WALKMAN using JellySony Rom

THREAD UPDATED WITH MOST INFO ON 4th POST
HAVE A LOOK
ENJOY
~>TAJ<~

Related

The Difference Between 2.3.2 & 2.3.3??

I know this question are not Arc based.
But what is the difference between Android 2.3.2 & 2.3.3?
//
dong
From Sony Ericsson:
This update brings lots of fixes and optimizations within many different areas but here are some important ones where I know our developers have included many improvements and fixes:
Battery performance
General software stability
Wi-Fi stability
HD Video recording performance (Xperia™ arc)
Touch responsiveness
Click to expand...
Click to collapse
Aside from the arc specific stuff, things like "General software stability" is usually the only real difference you'll find between minor Android updates (Which basically means bug fixes)
I mean general for all phones, not only SonyEricsson
Code:
API Overview
The sections below provide a technical overview of what's new for developers in 2.3.3, including new features and changes in the framework API since the previous version.
Near Field Communications (NFC)
Android 2.3.3 provides improved and extended support for NFC, to allow applications to interact with more types of tags in new ways.
A new, comprehensive set of APIs give applications read and write access to a wider range of standard tag technologies, including:
NFC-A (ISO 14443-3A)
NFC-B (ISO 14443-3B)
NFC-F (JIS 6319-4)
NFC-V (ISO 15693)
ISO-DEP (ISO 14443-4)
Mifare Classic
Mifare Ultralight
NFC Forum NDEF tags
The platform also provides a limited peer-to-peer communication protocol and API. Foreground Activities can use the API to register an NDEF message that will get pushed to other NFC devices when they connect.
Advanced tag dispatching now gives applications more control over how and when they are launched, when an NFC tag is discovered. Previously, the platform used a single-step intent dispatch to notify interested applications that a tag was discovered. The platform now uses a four-step process that enables the foreground application to take control of a tag event before it is passed to any other applications (android.nfc.NfcAdapter.enableForegroundDispatch()). The new dispatch process also lets apps listen for specific tag content and tag technologies, based on two new intent actions — android.nfc.action.NDEF_DISCOVERED and android.nfc.action.TECH_DISCOVERED.
The NFC API is available in the android.nfc and android.nfc.tech packages. The key classes are:
NfcAdapter, which represents the NFC hardware on the device.
NdefMessage, which represents an NDEF data message, the standard format in which "records" carrying data are transmitted between devices and tags. An NDEF message certain many NDEF records of different types. Applications can receive these messages from NDEF_DISCOVERED, TECH_DISCOVERED, or TAG_DISCOVERED Intents.
NdefRecord, delivered in an NdefMessage, which describes the type of data being shared and carries the data itself.
Tag, which represents a tag scanned by the device. Multiple types of tags are supported, based on the underlying tag technology.
TagTechnology, an interface that gives applications access to tag properties and I/O operations based on the technologies present in the tag. For a full list of tag technologies supported in Android 2.3.3, see android.nfc.tech.
NFC communication relies on wireless technology in the device hardware, and is not present in all Android devices. Android devices that do not support NFC will return a null object when getDefaultAdapter(Context) is called, and context.getPackageManager().hasSystemFeature(PackageManager.FEATURE_NFC) will return false. The NFC API is always present, however, regardless of underlying hardware support.
To use the NFC API, applications must request permission from the user by declaring <uses-permission android:name="android.permission.NFC"> in their manifest files.
Additionally, developers can request filtering on Android Market, such that their applications are not discoverable to users whose devices do not support NFC. To request filtering, add <uses-feature android:name="android.hardware.nfc" android:required="true"> to the application's manifest.
To look at sample code for NFC, see NFCDemo app, filtering by tag technology, using foreground dispatch, and foreground NDEF push (P2P).
Bluetooth
Android 2.3.3 adds platform and API support for Bluetooth nonsecure socket connections. This lets applications communicate with simple devices that may not offer a UI for authentication. See createInsecureRfcommSocketToServiceRecord(java.util.UUID) and listenUsingInsecureRfcommWithServiceRecord(java.lang.String, java.util.UUID) for more information.
Graphics
A new BitmapRegionDecoder class lets applications decode a rectangle region from an image. The API is particularly useful when an original image is large and and the application only need parts of the image.
A new inPreferQualityOverSpeed field in BitmapFactory.Options allows applications to use a more accurate but slightly slower IDCT method in JPEG decode. This in turn improves the quality of the reconstructed image.
Media framework
A new MediaMetadataRetriever class provides a unified interface for retrieving frame and metadata from an input media file.
MediaRecorder.AudioEncoder and MediaRecorder.OutputFormat include new fields for specifying AMR Wideband and AAC formats.
Speech recognition
The speech-recognition API includes new constants to let you manage voice search results in new ways. Although the new constants are not needed for normal use of speech recognition, you could use them to offer a different view of voice search results in your application. For information, see RecognizerResultsIntent.
here you go

[GUIDE | READ ME | DISCONTINUED-28/06/12 ] A Newbie Guide for your Galaxy Tab 7.7 ▓░░

[GUIDE | READ ME | DISCONTINUED-28/06/12 ] A Newbie Guide for your Galaxy Tab 7.7 ▓░░
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Do terms like ‘Android ROM’ confuse you? Is your understanding of ‘flashing’ limited to acts of exhibitionism? Do you feel left out or clueless when your friends talk about flashing the latest custom ROM to their Android device ? here is a guide for you to make your life easier
Hey guys, this is a guide which will help many people (new users).
The Very Beginning!​
Android is an Operating System (OS), like Windows or OSX to your computer or iOS [1] to the iPad and iPhone. It controls how the phone reacts to your inputs, what's displayed on the screen and when. Many would argue, the OS is the most important factor of any mobile device. Whether or not you agree, it certainly has a massive impact on user experience, hopefully at the end of this, you'll be able to make up your own mind.
Note-
Red color means -> its important !!
Click to expand...
Click to collapse
Understanding ROM’s and Builds​
A ROM is essentially a custom version of Android. Each tweaks, combines, or optimizes Android to offer something standard versions lack. Within ROM’s, you have what are known as builds (basic branches of Android code) that offer certain features and characteristics.
Think of it as a crude metaphor for Microsoft Windows. There’s XP, Vista, and Windows 7. All three are Windows operating systems and can typically run the same programs, but there are major differences between them. Within each OS, there’s further distinction between Vista Home, Vista Pro, and Vista Ultimate. Likewise, one ROM can spawn multiple versions. For instance, there are several flavors of Drake’s Hero ROM..
Be advised that some ROM’s require a wipe (erases all information stored on your phone) before or after installation. This is done when you enter the recovery mode and perform a “factory data reset.”
What is Firmware?​
The read-only operating systems that we just discussed above are also called ‘firmware’, as they stay firmly in place without modification access to the users of the device. Modification of firmware is still however possible, just not under normal usage. Many devices require specialized hardware to be used for the purpose while other devices have the storage set as read-only through software protection only, which can be removed or overridden without the need for any specialized hardware, just by using software written for the purpose, often but not always requiring connection to a computer.
Thus, the terms ‘operating system’ and ‘firmware’ both refer to the same thing and can be used interchangeably when applied to such devices.
Flashing​
The ROM memory used in smartphones and tablets etc. is often same as flash memory found in SD cards and USB flash drives, simply optimized for better speed and performance while running the operating system. As explained above, it is read-only under normal usage and requires a special procedure for any modifications to be made to its contents. The procedure of modifying or replacing the contents of such flash memory is known as flashing. Thus, in layman’s terms, flashing is essentially the same as installing or modifying the firmware of a device that is stored on its protected flash memory.
2 – Mobile Operating Systems
ROM as the Operating System​
When it comes to smartphones and tablets, the term ROM is used to refer to the firmware stored in the internal memory of the device, rather than the internal memory itself. It can also refer to a file prepared for the purpose of replacing this firmware with another version of using a special method.
Thus, when you are told by someone to download a ROM, they are referring to the file that contains the firmware in a format ready to be installed to your phone to replace it’s existing firmware. Similarly, when asked what ROM is your phone running or when told by someone their phone is running a particular ROM, they are again talking about the particular variant of the firmware.
Types of ROMs​->
Unlike most desktop operating systems, mobile operating systems can be found in installable format in multiple forms, which can be categorized as follows.
A)Truly Stock ROMs / firmware​:
This is the operating system in its default form, without any modifications made to it except for any device-specific support required to run it on the particular device. Truly stock firmware provides the standard user experience of the operating system without any cosmetic or functional changes made.
B)Manufacturer or Carrier branded Stock ROM / Firmware:
This type of firmware has had enhancements added over the default operating system by the device manufacturer or the mobile service carrier. This often includes interface enhancements, proprietary applications and in most cases, restrictions intended to limit the use of the device with a specific carrier or region. There are often further restrictions preventing installation of firmware not released by the carrier or manufacturer.
C)Custom ROM / firmware​:
Independent developers who like to customize their devices beyond the standard options provided often tend to release the fruits of their labor for the rest to enjoy, in form of custom ROMs.
3 – Stock Vs. Custom ROMs​
Both stock and custom ROMs have their merits and demerits and choosing between the two requires careful consideration. In this section, we are going to make a comparison between the two types of ROMs to help you make the right choice. Let us begin by taking a look at their advantages and disadvantages.
Advantages & Disadvantages of Stock ROMs​
Stock firmware is the result of a lot of research and testing done by the operating system vendor, the device manufacturer and/or the mobile service carrier. Therefore, it carries several advantages:-
1>It is usually quite stable upon release.
2>Almost all bugs are patched during the extensive beta testing before release.
3>It carries the official support by the firmware vendor, device manufacturer and the mobile service carrier.
4>Updates are pushed automatically to the device by the carrier.
Along with its advantages, stock firmware also carries its disadvantages and these include:​
1>Updates aren’t frequent, as development is done mostly by corporations who have to follow a scheduled release cycle.
2>Providing feedback to the manufacturer in case of any issues is either impossible, unwelcome (often with Apple devices), or a long, tedious process.
3>Similarly, getting official support can be a hassle as well, involving a tedious process.
4>If the device manufacturer and operating system developer are different (as is the case with Android and Windows Phone 7), any updates released by thekoperating system vendor need to be edited by the device manufacturer or mobile carrier to add compatibility and additional software before release. Hence, some devices get updates delayed by months.
5>Updates are often released first in the United States, leaving the rest of the world waiting. (A world does happen to exist beyond the United States, we’ve confirmed it ourselves!)
6>Worse still, when manufacturers choose to no longer release official updates for their older devi#es in favor of newer ones, their users are essentially stuck with old versions of the operating system. This case is evident with many Android devices barely a year and a half old.
Advantages & Disadvantages of Custom ROMs-​
Custom ROMs are as good or as bad as the effort put into them by their developers. Key advantages of custom ROMs are:
1)First and foremost, choice! There are thousands of custom ROMs out there for a range of devices, each offering a diverse set of features not found in the stock ROM.
2)Update frequency – custom ROMs are often under active development and newer releases of the core operating system are incorporated in them way before updated official ROMs are released.
3)Providing feedback is as easy as leaving a message on the development forum for the ROM in question.
Getting support with your issues at the forums is similarly easy, as not only the main developers themselves but also other experienced users of the ROM from the community are glad to help you with your issues and in the process, improve the ROM for everyone.
4)Custom ROMs usually have all the extra restrictions removed
5)Performance enhancements and optimizations found in many custom ROMs can make them much faster than stock ROMs ,enabling users to get the most out of their devices.
5)Overclocking options are built into some custom ROMs, further speeding up the devices.
6)Undervolting options found in some ROMs on the other hand result in improved battery life.
7)Old phones with little internal memory can benefit most from custom ROMs that allow them to use the external SD card memory for the apps exactly the way they would use the internal memory.
So with all these advantages, there should be no reason to stick with the stock ROM, right? Not necessarily! Like all things in life, custom ROMs come with their disadvantages as well:
1)Due to the lack of extensive testing prior to release, many custom ROMs can be buggy in the beginning and installing a ROM with missing or corrupt critical files can even brick your phone.
2)Several custom ROMs that are ports of ROMs from other phones can have missing functionality that hasn’t been made to work on your phone with the ROM yet.
Installing a custom ROM usually involves wiping your phone to factory settings, so you lose your data and start from scratch. Fortunately, Android’s built-in contact syncing along with apps offering message, call log and app backup/restore make this process easier, letting you retain your data.
The installation process can be cumbersome and requires you to root your phone and often circumvent its security features to allow for custom ROM installation in the first place.
Installing a custom ROM will in most cases void your phone’s warranty, though often the process is reversible, meaning you can turn your phone back to stock as long as it isn’t bricked.
Choosing the Right Custom ROM​
With several custom ROMs available for most Android devices, choosing the right one isn’t always easy. The question of ‘which is the best ROM for _____ phone / tablet’ is as often frowned-upon at the forums as it is asked, since there is no universal answer for it. One ROM may be the best for me while another might suit you better. The only solution is to read a lot, go through the feature list, read user response and if required, ask the developer questions at the forum page for the ROM. Attempt to install the ROM only after you are fairly satisfied that doing so will not harm your device to the extent you can’t fix.
Nandroid BACKUP​A Nandroid Backup is a backup file of your current ROM and its settings, you can do it manually using Clockwork Mod Recovery, it's fairly intuitive so you shouldn't have too much issue figuring these steps out.*IMPORTANT*
RISKS OF ROOTING​When a root exploit is initially found, it may or may not be stable. What this means is that it may not work reliably, or worse, it may cause a permanent failure of the phone, preventing it from booting up. A responsible phone hacker will therefore test the exploit extensively across many phones and modify the exploit as needed to make it stable. When the exploit has been proven to work safely and reliably, it is released to the public. However, this does not guarantee that the exploit will work with every single phone that it targets. The person or team that releases the exploit will make it clear that the exploit is "use at your own risk." Each person considering rooting their phone needs to understand this risk and decide whether it's worth proceeding or not.
Once the exploit has removed the NAND protection, the risk of permanently damaging your phone becomes very, very low. That's not to say that you can't get yourself into a bind, but with a little bit of know-how, rarely does a bad situation mean a bricked phone. If you haven't guessed already, a bricked phone is a phone that shares the qualities of a brick: it can look rectangular and do nothing.
As a preemptive safety measure, the custom recovery program installed as part of the root exploit contains a very useful tool called a NANDroid backup/restore. This utility backs up your internal memory and essentially is a save-state. No matter how you change your phone in the future, you can always bring your phone back to the state it was in at the time of the backup. It is highly recommended to make a NANDroid backup before flashing anything.
Knowledge is power here. If you've read this far, you already have a really good foundation into the Android rooting world. For more excellent infor-ation, I recommend reading this post: Quick INTRO TO ROOTING for those new to rooting, which will give you a broader vocabulary of root-related terminology. The more information you gather, the more you will realize that the risks of rooting are very low, while the rewards are very high.
And don't hesitate to use these forums to ask questions and seek clarifications. The rooting community is strong, and there are tons of people eager to help. Today's newbies are tomorrow's experts. Good luck in your endeavor%r1
The Android Family Tree
Android has a come a long was since its birth in 2008, however we're not here to fire into its history specifically, but what its history might mean for you! Android has been released in incremental versions. Each phone may differ in what version it has installed, usually the vendor decides what version it will choose, and develops Android into a specific ROM [2] for the device. To find out what version of Android your device is, navigate to the settings menu and select 'about phone', under 'Android version' there will be three numbers, the first two, will tell you what release you're running. There are currently 5 flavours of Android for phones, these are;
1.5 - Cupcake
One thing you'll learn, Android has quirky names! This version of android is likely the most basic version you'll meet, very few handsets still selling have this version. If you have a handset with version 1.5, you're limited in a big way! There are many features missing that means 1.5 just can't support many of the applications offered up in the market!
1.6 - Donut
Donut offered a few improvements over Cupcake; Voice search, turn-by-turn navigation and an improved market to name a few! It's still missing a few features that don't allow the more advanced apps to run. So don't be suprised if you're missing a few from the market.
2.0/2.1 - Eclair
Google picked up their game with the move to 2.1, it is arguably the largest and most important update Google made. Most applications will work on 2.1! It also included support for Microsoft exchange (if you don't know what this is, you don't need it) increased speed, smoothness, and improved the user interface immensely.
2.2 - Froyo
Currently the largest version in use, you're with a masses here and perhaps will find comfort in it. a few performance tweaks, faster browsing and the ability to run Adobe Flash 10.1 is among the few things you can do over your 2.1 bretheren.
2.3/2.4 - Gingerbread
Updated UI, higher resolution screens, VoIP calls, improved keyboard, introduced NFC to the world, faster performance, and a better battery life are among the benefits over your older bretheren. This released also improved voice-to-text engine input, copy and paste, audio effects, and enabled simultaneous multiple camera support.
4.0 - Ice Cream Sandwich
Ok huuuge update here, haven't played on it yet but this is shaping up to be the biggest update since 2.1, if not ever! Combining Gingerbread and Honeycomb, this is loooking a very mature and slick version of Android. Massive UI overhaul; hardware acceleration, no physical/permanent buttons, new Roboto font, Honeycomb task manager, new screen layouts, easily customisable folders, widget app drawer and a customisable launcher. Other improvements include new contacts or 'people' app, further improved copy and paste, further improved keyboard, visual voicemail with improved functionality, improved gestures, new lock screen, integrated screenshot capture, facial recognition unlocking, Android Beam utilising NFC, and awesome 3g data management software!
Click to expand...
Click to collapse
Power saving tips:
Dont use a live theme
Use a dark wallpaper
Turn off wi-fi & bluetooth when not in use
Stop friendstream, facebook & peep updating every 5mins. Set mine to manual.
Set email app to manual
Set screen brightness to auto or 40% (lower if you can put up with it).
How does one flash a kernel?
The process is a simple as flashing a ROM, put the .zip on ur sdcard, go into recovery,wipe cache,dalvik-cache, install .zip from sdcard, reboot phone and ur done.
How to Flash A Custom ROM-
Download a ROM of your choice from the All Things Root section (The Forum you are in) You can find direct links to each of them in the All Things Root Guide that is stickied at the top of this forum.
1- Once downloaded, its recommended to download it from your computer and place it on your phone, put it on the root of your internal or external sd cards. Root meaning not in a folder.
2- Reboot into recovery using Quick Reboot.
3- Using your volume keys to scroll and your power key to select, scroll down tand select "Wipe data/Factory Reset" then scroll to "Yes" and select.
4- Scroll down and select "Wipe Cache Partition" and then select "Yes"
5- Scroll down and select "Advanced" and select "Wipe Dalvik Cache" and then select "Yes" then scroll down and select "Go Back"
6- Sroll down and select "mounts and storage" then scroll down and select ONLY these 3 listed, "format data" and then select "Yes", then scroll down and select "format cache" and then select "Yes", then scroll down and select "format system" and then select "Yes". Then scroll down to and select "Go Back"
7- Then scroll down to "Install Zip From Sd", if you put the ROM on your external SD card select "choose zip from SD". If you put it on your internal scroll down and select 'choose zip from internal". Then after you selected one of those depended on where you put the ROM, scroll down and select the ROM and then Select "Yes".
Let it run and do its thing and once it says its done, select "reboot system now" and enjoy
How To Flash A Theme-
Download a theme of your choice from the All Things Root section (The Forum you are in) You can find direct links to each of them in the All Things Root Guide that is stickied at the top of this forum.
1- Once downloaded, its recommended to download it from your computer and place it on your phone, put it on the root of your internal or external sd cards. Root meaning not in a folder.
2- Reboot into recovery using Quick Reboot.
3- Using your volume keys to scroll and power button to select, scroll down and select "wipe cache partition" and then select "Yes"
4- Scroll down to and select "Advanced" and then select "Wipe Dalvik Cache"
5- Then scroll down and select "Go Back"
6- Then scroll down to "Install Zip From Sd", if you put the theme on your external SD card select "choose zip from SD". If you put it on your internal scroll down and select 'choose zip from internal". Then after you selected one of those depended on where you put the theme, scroll down and select the theme and then Select "Yes".
Let it run and do its thing and once it says its done, select "reboot system now" and enjoy
You can find stock firmwares here -​sampro.pl
sammobile
Important (Read it carefully)​ -> Forum & Marketplace Rules & announcements
Some other guides by some great developers-
> [ROM&GUIDE] Official Firmwares SGT 7.7 P6800 + P6810 Download By xenix96
>[GUIDE] Root By Jade Eyed Wolf
> [Guide] Full Tutorial To Install Custom ROM [GT-P6800] BY haidharbbc
Useful posts​ -
> [FAQ] Com-on Issues with the P6800 and their Solutions (where available) By Theory
>Welcome To the Galaxy Tab 7.7 Forum -Please Read Before Posting- by original_ganjaman
>[REF] Partitions P6800 + P6810 By Chainfire
> Simple ways to speed up your tablet!!
HONYCOMB FULL PREVIEW USER GUIDE *IMPORTANT*
I will update it ,when there is a need.
--->I will add more. If I ever miss anything please send me a private message
That should be enough to get you started.
CHANGELOG-​
UPDATE - 22/04/12 MAJOR UPDATE !! lot of information added!!!!
UPDATE -02/05/12 Android Terms,Slang & Definition added to guide see post #3 !!
UPDATE - 28/06/12-Due to fact, i dont own this tab anymore, there will be no updates.sorry!
Click to expand...
Click to collapse
I hope this guide helps you.......
Thanks..........
Please comment if you have any problems, or want to share anything.
Please give an REVIEW ,it means a lot to me.Thank you.
-------------------*Important Tips*---------------------
--- Important Tips ---​
[1]THERE IS NO SUCH THING AS THE *BEST* ROM OR *BEST* TWEAKS
-everything that has *best* in it's name is mainly made by questioner's preference.
[2] STOP ASKING FOR ETA'S....Stop asking when will it be released or when will that be released.its silly you know. IT WILL COME WHEN ITS READY GET IT ?
[3]OK this will be quite simple. If it says DEVS ONLY leave it alone. Don't comment unnecessary trash and ask for ETA's.
It's unstable so don't go making a thread in general section asking if it's stable or not.ok ?
[4]RESPECT THE DEVELOPERS*IMPORTANT*
[5] Read or search before posting anything! GOOGLE is your best friend!
https://www.google.com (use me)
SEARCH SEARCH SEARCH SEARCH BEFORE DOING SOMETHING !!!!!
I hope i am clear.....
[6] Stop posting and posting the same stuff over and over and over again! If it says in the ROM description that ""This" is not working" Dont keep on asking is "this" working? or something like that.
[7] Post in the proper section. You will get more help if you do this.
For example... don't start a question thread in developers forum just because you think it's more active than general section. EVERYTHING HAS IT'S PURPOSE
[8] If a bug has been reported once,then THATS ENOUGH REPORTING < Read once more,enough said
[9] LOOK,READ AND THEN ONLY POST,If there is something you want to post,then look at thread,read the whole thread and then ONLY post.
Credits - DooAce ,prawesome
Android Terms,Slang & Definitions*Important* + How to Increase Battery Life !
PART #1​
Android Terms,Slang & Definitions​
Apps2SD:A method of storing applications and cache on the device's microSD card.
ADB:Android Debug Bridge (adb) is a versatile command line tool that lets you communicate with an emulator instance or connected Android-powered device. It is a client-server program that includes three components:
•A client, which runs on your development machine. You can invoke a client from a shell by issuing an adb command. Other Android tools such as the ADT plugin and DDMS also create adb clients.
•A server, which runs as a background process on your development machine. The server manages communication between the client and the adb daemon running on an emulator or device.
•A daemon, which runs as a background process on each emulator or device instance.
AMOLED:Active Matrix Organic Light Emitting Diode. Basically, a very colorful, bright, display found in some smartphones.
APK:Android application package file. Each Android application is compiled and packaged in a single file that includes all of the application's code (.dex files), resources, assets, and manifest file. The application package file can have any name but must use the .apk extension. For example: myExampleAppname.apk. For convenience, an application package file is often referred to as an ".apk".
Alpha:The alpha phase of the release life cycle is the first phase to begin software testing (alpha is the first letter of the Greek alphabet, used as the number 1). In this phase, developers generally test the software using white box techniques. Additional validation is then performed using black box or gray box techniques, by another testing team. Moving to black box testing inside the organization is known as alpha release.[1]
Alpha software can be unstable and could cause crashes or data loss. The exception to this is when the alpha is available publicly (such as a pre-order bonus), in which developers normally push for stability so that their testers can test properly. External availability of alpha software is uncommon in proprietary software. However, open source software, in particular, often have publicly available alpha versions, often distributed as the raw source code of the software.
The alpha phase usually ends with a feature freeze, indicating that no more features will be added to the software. At this time, the software is said to be a feature complete.
Boot Animation:Boot animation is a term for a graphical representation of the boot process of the operating system.
Boot animation can be a simple visualisation of the scrolling boot messages in the console, but it can also present graphics or some combinations of both.
Unlike splash screens, boot screen or boot animation is not necessarily designed for marketing purposes, but can be to enhance the experience of the user as eye candy, or provide the user with messages (with an added advantage of color coding facility) to diagnose the state of the system.
Bootloader:This small program's only job is to load other data and programs which are then executed from RAM.Often, multiple-stage boot loaders are used, during which several programs of increasing complexity load one after the other in a process of chain loading.
Bootloop:When your system recycles over and over without entering the main OS.
Beta: is the software development phase following alpha. It generally begins when the software is feature complete. Software in the beta phase will generally have many more bugs in it than completed software, as well as speed/performance issues. The focus of beta testing is reducing impacts to users, often incorporating usability testing. The process of delivering a beta version to the users is called beta release and this is typically the first time that the software is available outside of the organization that developed it.
The users of a beta version are called beta testers. They are usually customers or prospective customers of the organization that develops the software, willing to test the software without charge, often receiving the final software free of charge or for a reduced price.
Beta version software is often useful for demonstrations and previews within an organization and to prospective customers. Some developers refer to this stage as a preview, prototype, technical preview (TP), or early access.
Some software is kept in perpetual beta—where new features and functionality is continually added to the software without establishing a firm "final" release.
CPU:It stands for Central Processing Unit and handles all the complex mathematical formulas necessary to do everyday things like surfing the Internet.
Cache:A component that transparently stores data so that future requests for that data can be served faster. The data that is stored within a cache might be values that have been computed earlier or duplicates of original values that are stored elsewhere. If requested data is contained in the cache (cache hit), this request can be served by simply reading the cache, which is comparatively faster. Otherwise (cache miss), the data has to be recomputed or fetched from its original storage location, which is comparatively slower. Hence, the greater the number of requests that can be served from the cache, the faster the overall system performance becomes.
CDMA:Mobile phone standards called cdmaOne, CDMA2000 (the 3G evolution of cdmaOne) and WCDMA (the 3G standard used by GSM carriers), which are often referred to as simply CDMA, and use CDMA as an underlying channel access method.
CIQ:Carrier IQ. A piece of preinstalled software that runs with elevated access in the background of portable devices by default and records everything. Potentially can be exploited to steal information.
Dual Core:A dual core processor is a central processing unit (CPU) that has two separate cores on the same die, each with its own cache. It essentially is two microprocessors in one. This type of CPU is widely available from many manufacturers. Other types of multi-core processors also have been developed, including quad-core processors with four cores each, hexa-core processors with six, octa-core processors with eight and many-core processors with an even larger number of cores.
Dalvik:The Android platform's virtual machine. The Dalvik VM is an interpreter-only virtual machine that executes files in the Dalvik Executable (.dex) format, a format that is optimized for efficient storage and memory-mappable execution.
Dalvik Cache:Writable cache that contains the optimized bytecode of all apk files (apps) on your Android device. Having the information in it's own cache makes applications load faster and perform better.
EXT2:The ext2 or second extended filesystem is a file system for the Linux kernel. It was initially designed by Rémy Card as a replacement for the extended file system (ext).
ext2 was the default filesystem in several Linux distributions, including Debian and Red Hat Linux, until supplanted more recently by ext3, which is almost completely compatible with ext2 and is a journaling file system. ext2 is still the filesystem of choice for flash-based storage media (such as SD cards, and USB flash drives) since its lack of a journal minimizes the number of writes and flash devices have only a limited number of write cycles. Recent kernels, however, support a journal-less mode of ext4, which would offer the same benefit along with a number of ext4-specific benefits.
EXT3:Third extended filesystem, is a journaled file system that is commonly used by the Linux kernel. It is the default file system for many popular Linux distributions, including Debian. Stephen Tweedie first revealed that he was working on extending ext2 in Journaling the Linux ext2fs Filesystem in a 1998 paper and later in a February 1999 kernel mailing list posting, and the filesystem was merged with the mainline Linux kernel in November 2001 from 2.4.15 onward.Its main advantage over ext2 is journaling, which improves reliability and eliminates the need to check the file system after an unclean shutdown. Its successor is ext4.
EXT4:It was born as a series of backward compatible extensions to ext3, many of them originally developed by Cluster File Systems for the Lustre file system between 2003 and 2006, meant to extend storage limits and add other performance improvements.However, other Linux kernel developers opposed accepting extensions to ext3 for stability reasons,and proposed to fork the source code of ext3, rename it as ext4, and do all the development there, without affecting the current ext3 users. This proposal was accepted, and on 28 June 2006, Theodore Ts'o, the ext3 maintainer, announced the new plan of development for ext4.
FC/FC's:Short for "force close," meaning an app that has crashed.
Fastboot:A diagnostic protocol used primarily to modify the flash filesystem in Android smartphones from another computer over a USB connection. It is part of the Android Debug Bridge library.
Utilizing the Fastboot protocol requires that the device be started in a boot loader or Second Program Loader mode in which only the most basic hardware initialization is performed. After enabling the protocol on the device itself it will accept any command sent to it over USB via a command line. Some of most commonly used fastboot commands include:
•flash - Overwrites a partition in flash with a binary image stored on the host computer.
•erase - Erases a partition in flash.
•reboot - Reboots the device into the either the main operating system or the system recovery partition.
•devices - Displays a list of all devices (with Serial #) connected to the host computer.
Flashing:The ROM memory used in smartphones and tablets etc. is often same as flash memory found in SD cards and USB flash drives, simply optimized for better speed and performance while running the operating system.
Hotspot:A spot that offers Internet access over a wireless local area network through the use of a router connected to a link to an Internet service provider. Hotspots typically use Wi-Fi technology.You can connect wifi campatible devices to it.
HDMI:High-Definition Multimedia Interface) is a compact audio/video interface for transmitting encrypted uncompressed digital data.It is a digital alternative to consumer analog standards, such as radio frequency (RF) coaxial cable, composite video, S-Video, SCART, component video, D-Terminal, or VGA (also called D-sub or DE-15F). HDMI connects digital audio/video sources (such as set-top boxes, DVD players, HD DVD players, Blu-ray Disc players, AVCHD camcorders, personal computers (PCs), video game consoles (such as the PlayStation 3 and Xbox 360), AV receivers, tablet computers, and mobile phones) to compatible digital audio devices, computer monitors, video projectors, and digital televisions.
JIT:The Just-in-Time Compiler. Released with Android 2.2, it's a method of greatly speeding up apps in Android on the software side.
Kang:Someone writes a code,someone else modifies the code to make their own release,its concidered a kang release.
Kernel:A kernel is a layer of code that allows the OS and applications to interface with your phone's hardware. The degree in which you can access your phone's hardware features depends on the quality of code in the kernel. The homebrew (rooting) community for HTC has made several kernel code improvements that give us additional features from our hardware that the stock kernel does not. When you flash a custom ROM, you automatically get a kernel. But you can also flash a standalone kernel ROM on top of the existing one, effectively overwriting it. These days, the difference in custom kernels is less about new features and more about alternate configurations. Choosing a custom kernel is basically choosing one that works best with your ROM.
Launcher:Collectively, the part of the Android user interface on home screens that lets you launch apps, make phone calls, etc. Is built in to Android, or can be purchased in the Android Market.
LCD Density:Pixel density is a measurement of the resolution of devices in various contexts; typically computer displays, image scanners, and digital camera image sensors.
First of all you need to understand that the Android User Interface uses something called a "display independent pixel" or a "dip" (yes, it's confusing because the density settings are in "dots per inch" or "dpi" which are considered the same as "ppi" or "pixels per inch" as well).
The default LCD Density setting on Android is 160 dpi. As far as the operating system is concerned 1 dip @ 160 dpi = 1 screen pixel. It doesn't mean that's actually true, but you've gotta start somewhere. In my opinion it would have been a lot nicer if they'd chosen 100 dpi because then it would be an easy percentage thing, but they didn't so we're stuck with this formula.
Mod:The act of modifying a piece of hardware or software or anything else for that matter, to perform a function not originally conceived or intended by the designer.
Nightly:A build that is performed at the end of each day of development. If you use a continuous integration server, it will generally be configured to build the code and run the unit tests on every check in. At the end of each day you may want to run more extensive tests, regression test and integration tests for example, which take too long to run on each check in and these would be triggered after the nightly build. If you have a full continuously delivery pipeline the nightly build may also be used to deploy the built code to environments for user testing.
Open GL:An open source 3D graphics library used in many devices, including Android devices.
Open & Closed Beta:Developers release either a closed beta or an open beta; closed beta versions are released to a select group of individuals for a user test and are invitation only, while open betas are from a larger group to the general public and anyone interested. The testers report any bugs that they find, and sometimes suggest additional features they think should be available in the final version.
Overclock:To increase the speed of your CPU.
Partition:The phone's internal memory (not the SD card) is solid-state (flash) memory, AKA NAND. It can be partitioned much like a normal hard drive can be partitioned. The bootloader exists in its own partition. Recovery is another partition; radio, system, cache, etc are all partitions.
Here are the standard partitions on an Android phone:
/misc - not sure what this is for.
/boot - bootloader, kernel
/recovery - holds the recovery program (either clockworkmod or RA recovery for a rooted Evo)
/system - operating system goes here: Android, Sense, boot animation, Sprint crapware, busybox, etc
/cache - cached data from OS usage
/data - user applications, data, settings, etc.
The below partitions are not android-specific. They are tied to the hardware of the phone, but the kernel may have code allowing Android to interact with said hardware.
/radio - the phone's radio firmware, controls cellular, data, GPS, bluetooth.
/wimax - firmware for Sprint's flavor of 4G, WiMax.
PRL:The Preferred Roaming List, basically a way of telling your phone which towers to connect to first.
RUU:a complete software package released by HTC, it can contain many things they are trying to update. Radio, ROM, bootloader, etc... Installing an ruu is like installing an image on a hard drive it wipes the phone and installs the image. It will wipe everything data and all so if you install one be prepared.
Radios:On the HTC side of things,the radios persist of:
•WiFi, which operates at 2.4-5ghz depending on what channel it's running
•Cellular/3G, which carries voice and data
•4G/WiMAX, which only carries data
•GPS, which is receive-only
•Bluetooth, which talks to WiiMotes and headsets
Flashing a radio means updating the code that controls the phones way of sending and recieving a signal.
Root:The first level of a folder.
SBC:(the ability to charge your battery beyond the default safe limit). The concept is similar to overclocking a processor: you're overriding the safety limits established to achieve additional performance. The benefit here is that you may gain more use of your battery per charge. The drawback is that you can damage the battery and significantly reduce its longevity. Some kernels claim they are using a safe technique to prevent battery damage. Just be aware of the potential risks.
Sideloading:It means installing applications without using the official Android Market.
Splash Screen:A splash screen is an image that appears while android is loading.Splash screens cover the entire screen or simply a rectangle near the center of the screen. The splash screens of operating systems and some applications that expect to be run full-screen usually cover the entire screen.
Superuser/SU:On many computer operating systems, the superuser is a special user account used for system administration. Depending on the operating system, the actual name of this account might be: root, administrator or supervisor.
Normal work on such a system is done using ordinary user accounts, and because these do not have the ability to make system-wide changes any viruses and other malware - or simple user errors - do not have the ability to adversly affect a whole system. In organizations, administrative privileges are often reserved for authorized experienced individuals.
Script:The Scripting Layer for Android (abridged as SL4A, and previously named Android Scripting Environment or ASE) is a library that allows the creation and running of scripts written in various scripting languages directly on Android devices. SL4A is designed for developers and is still alpha quality software.
These scripts have access to many of the APIs available to normal Java Android applications, but with a simplified interface. Scripts can be run interactively in a terminal, in the background, or via Locale.
SDK:(SDK or "devkit") is typically a set of software development tools that allows for the creation of applications for a certain software package, software framework, hardware platform, computer system, video game console, operating system, or similar platform.
Stock:This is the operating system in its default form, without any modifications made to it except for any device-specific support required to run it on the particular device.
S-On:Security on,means no acces to the phones operating system.
S-Off:Security was exploited,now have access to the operating system.
Tethering:Means sharing the Internet connection of an Internet-capable mobile phone with other devices. This sharing can be offered over a wireless LAN (Wi-Fi), Bluetooth, or by physical connection using a cable. In the case of tethering over wireless LAN, the feature may be branded as a mobile hotspot.The Internet-connected mobile phone acts as a portable router when providing tethering services to others.
USB:Stands for Universal Serial Bus. Is a method of connecting devices to a computer. Most smartphones now use microUSB cables to charge and sync.
Updater Script:When Android devices install updates via 'update.zip' files using recovery mode they have to perform a wide range of functions on files and permissions. Instead of using a minimal shell such as {b,d,c}sh the Android designers decided to create a small functional language that can be extended by device manufacturers if necessary. Since the Android "Donut" release (v1.6) the scripting language is called Edify and is defined primarily in the bootable/recovery/{edify,edifyscripting,updater} directories of the Android source-code tree.
Wireless N:Wireless N technology increases wireless internet connection. Wireless 'N' routers also work with Wireless 'G' and 'B' wireless adapters.
WiiMax:(Worldwide Interoperability for Microwave Access) is a communication technology for wirelessly delivering high-speed Internet service to large geographical areas.
YAFFS:Yaffs1 is the first version of this file system and works on NAND chips that have 512 byte pages + 16 byte spare (OOB;Out-Of-Band) areas.[clarification needed] These older chips also generally allow 2 or 3 write cycles per page,which YAFFS takes advantage of - i.e. dirty pages are marked by writing to a specific spare area byte.
Newer NAND flash chips have larger pages, 2048 bytes + 64 bytes spare areas, and stricter write requirements.Each page within an erase block (128 kilobytes) must be written to in sequential order, and each page must be written only once.YAFFS2 was designed to accommodate these newer chips.YAFFS2 is based on the YAFFS1 source code,with the major difference being that internal structures are not fixed to assume 512 byte sizing,and a block sequence number is placed on each written page. In this way older pages can be logically overwritten without violating the "write once" rule.[clarification needed]
YAFFS is a robust log-structured file system that holds data integrity as a high priority.A secondary YAFFS goal is high performance.YAFFS will typically outperform most alternatives.It is also designed to be portable and has been used on Linux, WinCE, pSOS, eCos,ThreadX and various special-purpose OSes.A variant 'YAFFS/Direct' is used in situations where there is no OS, embedded OSes and bootloaders: it has the same core filesystem but simpler interfacing to the OS and NAND flash hardware.
Zipalign: An archive alignment tool introduced first time with 1.6 Android SDK (software development kit). It optimizes the way an Android application package (APK) is packaged. Doing so enables the Android operating system to interact with the application more efficiently, and hence has the potential to make the application and overall the whole system much faster. Execution time is minimized for zipaligned applications, resulting is lesser amount of RAM consumption when running the APK.
CREDITS-Diablo67
Click to expand...
Click to collapse
---------------------------------------------------------------------------------------------
PART #2​How to increase battery of Your Tab !​
While many of us, and our readers, are seasoned vets of the Android ecosystem, there are many that are just starting out. After spending the last hour looking for something to cover that was extreme, I had an idea. That idea is what you are seeing here. A newbie friendly series of posts that will outline various topics from the simple, to the more complex. Not always about some new root tool, some new device or some insane kernel. More focused on basic daily operations, things that can improve upon the newest users experience to the Android ecosystem.
In today’s newbie guide we are going to outline a few battery saver tips and tricks that can help extend the life of your battery.
Tip #1 - As much as we all love the look of live wallpapers, they suck battery. Sticking to a static, or regular picture, will help out. Alternatively, the best option for many devices is using a true black png image. This is particularly helpful on AMOLED based screens, as color pixels use power where as black does not. Click the link to head to a black png, long press on it and save it. Then apply it as your wallpaper. If you can set it as a lockscreen wallpaper too that would be a good idea.
Tip #2 – Cut back on the widgets. While widgets are pretty, fun and often times useful, over doing it can hurt you long-term. Not just in battery performance, but even device performance. For instance, using Beautiful Widgets, you can get the date, time and weather in one widget versus running three different ones. If you can’t live with out them, then at least adjust the settings for when they update. Instead of polling the weather every time you turn your screen on, set it to every 4 or 8 hours. Most widgets will also let you set them to only pol manually. While it might be a slight inconvenience, pulling data for updates uses power and it uses your data plan.Similar rules apply to apps like Hootsuit, Facebook and so on.
Tip #3 – Screen brightness can dramatically affect your overall battery life. Many devices have an auto brightness setting that will use your light sensor to adjust the brightness according to the current lighting conditions. It is recommended that you leave that turned on. I have found that while it is nice, I prefer to have manual control of my brightness. If you spend a great deal of time indoors, the lowest brightness setting is enough to see your screen and use your phone. While the next statement might seem to contradict the widget tip, not all widgets consume power. Most Android version have a ‘power control’ widget which gives you quick access to WiFi, Bluetooth, GPS, Sync and brightness. If your device doesn’t have one, you can locate single button widgets that offer the brightness control, such as this one. I personally keep it to the lowest setting and if I need more light, just tap the brightness button to make it brighter when I need it.
Tip #4 - This one is simple and easy. Keep Wi-Fi and GPS off unless you actually need them. Both are easily controlled with the power control widget ro any other number of apps to keep you from having to go through the settings all the time. Heck, many newer devices even have those in the notification drop down bar now.
Tip #5 – When traveling or staying in an area that has no reception, turn of the devices radios. Sounds silly right? But if you are somewhere that gets no service at all, your device is going to be constantly searching for service and your battery is going to drain like crazy. The easiest and most universal way to turn of your radios is to put the device in ‘airplane mode.’ That is generally under Menu > Settings > Wireless and Networks. Although some UI’s have it in a different location and there are also apps and widgets that can accommodate this function. This also works out well in an office environment where Wi-Fi might be present but cell service is non existent. You might need to toggle the Wi-Fi back on for data use, but your phone won’t be searching for cell connection the whole day either.
Tip #6 – Adjust your screen off time. Many of us seasoned vets just hit the power button when we are done on our phone to turn of the screen. While it is rare, some devices don’t have that option. Setting the screen off time to the lowest amount of time will help ensure your phone’s screen goes off in case you forget. Believe me, I have seen people set their phone down with the screen on for hours and wonder why their battery dies so quickly. This can be accessed via Menu > Settings > Display. Depending on your current device, it might be screen off timer or sleep. Maybe others, not sure.
Tip #7 – This tip has a few various parts. First, running your battery through a few charge cycles is always a good idea. This means fully charging the device, then running it until it powers off. While it is off, plug in and charge it to 100%. Then repeat the process at least twice, but three times is a good idea. Sadly, the batteries the manufacturers use, aren’t always of the highest quality. Bummer huh.
Tip #8 – Watch for ‘rogue’ apps. By that we mean, if you have recently installed an application and you have noticed that your battery life has also recently gotten worse, you may have a rogue app running. This is usually pretty easy to find by checking Menu > Settings > Battery. You can usually see what apps are sucking juice. If you locate one, you can kill that process to stop it from eating battery, or if it is an app you hardly use simply uninstall it.
Tip #9 – Final tip for this post. Your launcher. Yes, your current launcher might be the culprit as well and you may not even know it. The fantabulous Sense UI found on HTC devices, TouchWiz found on Samsung devices and MotoBlur found on Motorola devices can also attribute to battery brain. Often times switching to a new launcher such as Go Launcher EX, ADW Launcher EX or countless other launchers can provide not only a boost in battery performance, but also a boost in your devices speed. Not to mention the added benefit of fun UI elements, themes and tweaks.
While there are plenty of other tips and tricks that I am sure our readers will add to the comments, these are 9 that can really make a difference in your daily consumption. Give them a try if you haven’t already done so and give it a couple of days. Nothing happens over night.
CREDITS-> Stormy Beach.
Good guide for the noobs
Thread updated - Major update - 22/04/12​
Please comment if you have any problems, or want to share anything.
Please give an REVIEW ,it means a lot to me.Thank you.
Great job. I'm sure it'll help newbies a lot. Too bad that there is still not much in the development section to put your guide to work. Hopefully that'll come soon.
Marand55 said:
Great job. I'm sure it'll help newbies a lot. Too bad that there is still not much in the development section to put your guide to work. Hopefully that'll come soon.
Click to expand...
Click to collapse
yes , you are right... there is not much in the development section ,it can be due to since its new tablet . hope it gets better.
Thanks for putting all this together... haven't read through it all yet as I think it probably covers a lot of what I know and have learnt since I joined the Android world last year, but I will bookmark it so I can point friends this way if they leave the iPhone flock.
Ruxin said:
Thanks for putting all this together... haven't read through it all yet as I think it probably covers a lot of what I know and have learnt since I joined the Android world last year, but I will bookmark it so I can point friends this way if they leave the iPhone flock.
Click to expand...
Click to collapse
Thank you
This is a fantastic guide not only for someone new to the p6800/p6810, but anyone new to the Android ecosystem in general. Thank you for clearing a lot up for me!
JemaKnight said:
This is a fantastic guide not only for someone new to the p6800/p6810, but anyone new to the Android ecosystem in general. Thank you for clearing a lot up for me!
Click to expand...
Click to collapse
Your welcome ;-)
Great information. I wish I had it to look at when I first started playing around with rooting my Nook Color! This is a good thread to keep handy when a real novice gets the bug. Thanks.
GUIDE UPDATED -2/05/12​"Android Terms,Slang & Definitions" added SEE post #3
Thanks for using the siggy!
And thanks again for the effort on piling things up!
billy_overheat said:
Thanks for using the siggy!
And thanks again for the effort on piling things up!
Click to expand...
Click to collapse
Your welcome !
Thumbs Upz! This is amust read and priority post before u go to other topics.
Help
Great Post!
Please I know I am most likely in the wrong area or post, I have had a Desire HD before and been down the road of rooting and flashing roms on it, I now own a Galaxy tab 7.7 and feel as if this is all new for me again. unfortunately I am in South Africa and had bought my tablet online, I was not told it would be a Arabic region tablet. Could I please ask who to speak to or ask for help on roms, I have the build number (HTJ85B P6800JPKL4) and want to know what roms will work and what not to use on this.
Please, I know you guys have better things to worry about but your advise or help would be gladly appreciated
Thank you in advance!
evil_penguin said:
Tip #1 - As much as we all love the look of live wallpapers, they suck battery. Sticking to a static, or regular picture, will help out. Alternatively, the best option for many devices is using a true black png image. This is particularly helpful on AMOLED based screens, as color pixels use power where as black does not. Click the link to head to a black png, long press on it and save it. Then apply it as your wallpaper. If you can set it as a lockscreen wallpaper too that would be a good idea.
Click to expand...
Click to collapse
Does anybody have a link to the png? I have misplaced mine, and I miss it. There doesn't seem to be a link here anywhere. thx.
Thanks
Thanks, really helpfull covers many things I was wondering about
thx
very helpful

[APP]Linux Autoloader v0.9.6.1[BETA]

-This app REQUIRES a rooted device AND busybox installed-
Welcome to Linux AutoLoader (LinLoad for short), the tool for COMPLETE Linux management within your Android
Device through chroot. This app allows you to mount, log in, and manage ANY full Linux system on your Android
Smartphone or Tablet. You can load from either a SDCard partition or from a filesystem image on your
device.
This app comes with built in support for swap usage, transportable and interchange-able home directories, as well
as advanced error management and recovery. This app will tell you what went right, what went wrong, and even has
suggestions on fixing the rare bugs that may come up.
The Profile System allows you to set default settings for different images. Name your system so its easy to keep track of which one is mounted, set default user, home directories, sdcard use, and even automatically clear the VNC locks, without the need to run scripts or type out commands.
The Control Panel allows you to boot straight into the Linux System terminal, start VNC with one click, update different system files, or load in your home directory. A notification service also starts when Linux is detected as mounted, allowing quick access to the Linux Control Panel.
APP Features
--------------
- Built-in automatic VNC screen size setting, detects proper screen to set for ANY device
- Detects difference in Internal Storage and External storage for devices built for
- The ONLY Linux boot utility to properly detect an dedicated ext2/4 partition on your SDCard
- Provides a Profile system to help manage settinhs across multiple Images and partitions
- Runs ALL ARM-based Images and filesystems
- Various How-To's found in the "How do I...?" section
Control Panel Features
--------------
- Links three different designated Android Terminal windows for ease-of-use:
-- Normal Terminal
-- Terminal window deficated to VNC commands
-- Terminal window for system commands and management
- Start VNC, clear all VNC locks left over from previous runs, and (soon) open your favorite VNC app directly from Linux Autoloader
- Connect through SSH using ConnectBot, or through the Android Terminal using chroot
- Keep all your documents inside a seperate home image (EXT4 supported needed) for easier transportability across any system (Android or Linux)
- Mount a swap file for increased stability
- Keep the file system fstab updated with just one click
- Manage services found in /etc/init.d
Keywords:
Backtrack, ArchLinux, Fedora, Gentoo, Linux, Unix, Ubuntu,
Full Changelog can be found at http://forum.xda-developers.com/showthread.php?p=27074347
CHANGELOG
V0.9.6.1
- ConnectBot Support added
- More external storage device configurations detected (/storage/sdcard1)
- External Sdcards accesible through "Boot Image"
- Home and Swap mounting greatly improved
- Fixed random Control Panel crash
- Links 3 terminals through chroot to allow easier tracking of command output:
--Terminal
--VNC
--System
V0.9.5.3
- Fixed Random crash on opening the Control panel from Notification
- If a File Manager is not installed, app will ask you to install one\n- Code tweaks to increase mounting speed
- Insured ll.config is placed as it should be
V0.9.5.2
- Boot Default and Partition properly update screen
- Warnings about needing Android Terminal Emulator to run VNC and Start Terminal
- Quick Start guide now runs first time the app is opened
- "Whats Updated" Dialog added
- Updated Boot Default selection
- Bug-fixes
v0.9.5.1
- Quick Start guide added
- Boot Default image now askes which image to set as default
- Bug-fixes
V0.9.5
- Profiles added - Adds numerous default settings to Linux system images
- Fixed indexOutOfBounds errors (mostly, one still eludes me)
- tutorial coming soon!
V0.9.4 - Major update
- now includes a service to let you know you have something mounted
- Base framework improved
- App logging greatly improved
- settings now contain common export variables, including hostname, user, home, and designating a display number to run applications through the terminal to start GUI programs
- app bitmaps improved
- Numerous bug-fixes
v0.9.3
- Improved mounting methods
- Detect file system by extension working
v0.9.2
-Technically BETA-
-upgraded UI
- Added Linux control panel
- improved mounting methods
- improved swap method
-option to clear vnc locks and update fstab
- automatic VNC geometry setting
- set fs type by extension for images -still very buggy-
EPIC! This is great
good job mate
Sent from my LG-P500 using Tapatalk 2
Thanks
I have to admit, theres a few bugs to be worked out, but its only gonna get better over time
It's ridiculous that i HAVE to buy it to test it (Beta).
Although it is only a small amount, i'm basically AGAINST paying for a BETA product.
Is there a free version i can TRY???
I do not plan on releasing a free version, and the cost will not be going any higher when I deem it as a full release. I released it as a beta to allow those out there that have been looking for something like this to watch the project grow and put in thier input at an early stage in development. The 1 dollar price tag is a very minor amount when you consider how much time this can save if you enjoy using Linux on your android devices.
This project is a great passion of mine, and I have many many more features that I will be adding to if in the coming weeks
z3nful said:
I do not plan on releasing a free version, and the cost will not be going any higher when I deem it as a full release. I released it as a beta to allow those out there that have been looking for something like this to watch the project grow and put in thier input at an early stage in development. The 1 dollar price tag is a very minor amount when you consider how much time this can save if you enjoy using Linux on your android devices.
This project is a great passion of mine, and I have many many more features that I will be adding to if in the coming weeks
Click to expand...
Click to collapse
Hey mate i dont use the google play for paying a app is it possible to pay to you in paypal?
At the moment, thr app is only acailable through Google Play. In the near future though, Ill also have it up on YAAM(Yet Another App Market) which supports Paypal.
Keep an eye on my website at http://wwe.zenfulapps.COM for news on when it is available through there
I need help
How do I switch the default directory to my extsdcard (/storage/sdcard1)

[INFO] "New User Guide Terms Android"

Hi! I saw that many (myself initially) fail to understand the discussions of various topics of modding on this and other forums because of certain terms that are now characteristic of speech in any argument.
-Android operating system for mobile devices based on Linux kernel. Android is an open source project developed by the Open Handset Alliance (OHA). Google was the first company to work on Android and HTC has designed and implemented the first Android phone.
-AOSP: The term stands for AOSP Android Open Source Project, which is an initiative created to guide the development of the Android mobile platform.
-ADB (Android Debugging Bridge): application via command line (command prompt, DOS), is used to flash rom, make changes to the system, backup, install applications (using the command: adb push nomeapp.apk / system / app /), copy files from your device to PC (via the command: adb pull / path / inside / of / Android / filename nome_file_destinazione) and more. ADB is a tool included in the SDK of Android that allows you to manage your phone simply by connecting it via USB. For programmers, ADB is also used to execute commands on a virtual machine Android. detailed instructions.
- Apk (short for Android Package): is the file format used to install the Android software (it works similar, more or less, that is for Windows. Exe). Renaming the extension of this file. Zip you can open it with any operator of compressed files.
-App or Apps: abbreviation of the term application or applications
-App2sd (A2sd): procedure inherent in many Roma coocked, to move applications installed, or install later, the memory card instead of phone memory. to use it you must have an ext2 or ext3 or ext4 on the memory card. part of the application (the Dalvik cache) is still stored in the smartphone does not reduce the speed of execution. app2sd this is not to be confused with the various applications on the market, as those of the market allow the movement or storage of only applications that allow it.
-Bootloader (FASTBOOT): phone mode (while connected to USB mode with usb debug enabled) through which you can do many things, including obtaining root permissions, flash ROM, make backups, pushare files, remove files etc. ... the bootloader mode varies from terminal to terminal, refer to those sections for how to go into bootloader on your device.
-Brick (brickare, brickato): literally (translated in Italian) "BRICK". making the cell like a brick, a something of unusable if not as paperweights.
-Digital compass: The digital compass is able to detect the direction in which the device is pointing. This information can be used together with an appropriate mapping software to assist in navigation to unknown places.
-BusyBox: BusyBox is important because it lets you install it on your Android poteziare with many basic Linux commands. In fact, some powerful programs, such as Titanium backup and others, use busybox to carry out the instructions. In virtually a few kb there are so many beautiful little programs. guide: using titanium or backup.
-Cache: a temporary memory in which data are stored as may be eliminated without compromising the functionality of the system.
-Digital certificate: encrypted code issued to two or more parties by an authorized organization, and used to verify the identity of those parties by exchanging their public keys.
-Cupcake: Android 1.5 or relaise first official operating system pounces April 13, 2009
-Encryption: Procedure for the encoding of a systematic bit stream before transmission, aimed at avoiding that the contents can be decrypted by third parties.
Dalvik-Cache: cache used by the system to increase the execution speed of programs.
USB-Debug: mode of Android that is (turning the feature on your device via menu / settings / apps / Development / Debug USB) to allow the system to undergo special modifications.
Direct-Push Technology: Direct Push technology (push e-mail capabilities), developed by Microsoft, lets you receive new e-mail messages on their device, they are not received by your mailbox Inbox or Exchange Server. Items such as contacts, calendar and tasks are immediately updated on the device if they are changed or added on the Exchange Server.
-Emulator: it is found in the SDK and is a software that allows you to emulate (simulate) an android device. usually serves to developers (developers) to test applications.
-Digital Signature: A digital signature assures the recipient about the identity of the person who sent the file, and the absence of alterations made ​​after signing this.
-Firmware: Software comlpleto the phone, android rom often contains (the only operating system) the radio (software designed to handle all communications) and hboot (the part on the base, and boot management and partition of the phone) . The format depends on the parent company that issues them and shall be flashed through the tool or program.
-Flash (flash, flashed): install, installed.
-G. E. often written or GE (Google Experience): There are those phones that have the OS (see ROM for a definition) fully developed by Google without any addition or customization by the manufacturer that sells the device (for example the number of mobile Nexus is entirely GE). This designation often means that these phones are the first to receive updates of new versions of Android, because there being no additional software, as well as those developed by Google, the release is much quicker.
Another (more common) is that With Google.
Are those phones that despite having some customization software by the manufacturer, are fully compatible with the Google software and services with Android.
-GPRS: GPRS (General Packet Radio Systems - Radio systems for generic packages) is a data service for mobile devices. It is available for the devices that meet the GSM standard.
-GPS: GPS (Global Positioning System - Global Positioning System) is a radio navigation system based on satellites that allows the DENTIFICATION of a geographical position through a triangulation of points. The GPS is used on mobile devices for applications software for navigation.
-GSM: Short for Global System for Mobile communications (Global System for Mobile Communications), is the platform for mobile computing worldwide.
-HSDPA: HSDPA (High-Speed ​​Downlink Packet Access) is a technology for mobile devices that allows higher data speeds than traditional networks. Often referred to as 3.5G for faster downloading.
-HSPA: HSPA (High-Speed ​​Packet Access - High Speed ​​Packet Access) is a technology for mobile devices that improves the speed at which you can send and receive information on their mobile device. HSPA technology is used in 3G networks.
HSUPA: The HSUPA (High-Speed ​​Uplink Packet Access - access to packages for the high-speed) is a technology for mobile devices that provides (along with HSDPA) the possibility of having connections with fast download and upload very high by optimizing use of bandwidth.
-HVGA: The HVGA (Half-size Video Graphics Array) indicates a particular display resolution of 480 x 320 pixels.
-hboot: the part on the basis of partition and boot management and the phone
-Kernel: is the essential part of any operating system. Without going into technicalities, it manages hardware (drivers and other information about the hardware, for example). Android uses a modified Linux kernel and is entirely open source (ie source code is freely available and modifiable).
- Launcher: It 's the software that handles the desktop (icons, widgets, wallpapers etc..) Android operating system. In essence, is what appears when you access the phone after the unlock screen, called Lock Screen (see below) if it is enabled.
Android allows for excellent customization Lacuncher. Although all versions of Android will already have a default, it is possible (when this option is not blocked by the manufacturer) install as many as you want from those in the Market. Launcher The best known of those owners are not ADW Launcher, Launcher Pro, Helix Lancher.
Most producers customize more or less heavily, their phones (as long as they are not GE, see above), and modification of the launcher is usually the most common personalization. Motorola for example sviluppaMotoBlur (non-removable, and includes an additional set of changes including the Launcher), the HTC the Sense (removable; this also includes modifications to the deepest only launcher which also include the framework), Samsung TouchWiz the (removable) etc..
The change of Lacuncher makes it very often no longer available widgets developed for another Launcher.
-Leak Leaked or (escaped): this refers to the ROM or firmware that (strangely) escape to the Mother House, and is circulated on the net. are semi-official, in the sense that they are developed directly from 'manufacturer, but are not officially released (and therefore not fit to restore the guarantee of a device).
Screen-Lock or unlock screen: is the screen that appears after turning on and / or whenever you press the on / off the phone. Used to not press the keys when not using the phone. It requires a combination of specific touches, or gestures to be "removed"
-Nandroid (found in the recovery as amended): application that creates an image of the entire operating system, like norton gost and true image for windows.
-ODEX: type of compression that is used to free up memory and speed up your system. ODEX unzip the file compresses everything and creates a file. ODEX dall'apk deleting the file. dex then you end up with after launcher.apk and launcher.odex (so 'you have saved so much space and improved
the speed reading application). rom the ODEX can not be changed the subject.
-OTA: Over The Air - system that allows applications to receive updates directly from the network or system
Ext2/ext3/ext4-partition: partition on the memory card (which usually can be made using modified recovery) used to install applications on this media instead of filling up the phone memory. the ext is a type of file system used on Linux and is seen as part of the Android smartphone's internal memory. to partition the SD card in the sections and guides for your device.
-Profile A2DP: Advanced Audio Distribution profile (Advanced Audio Distribution) is a specification that refers to how two Bluetooth devices can transmit and receive streaming high quality audio. The A2DP allows the transfer of a unidirectional stream audio in stereo with two channels, such as music from one phone to a headset.
-Pull: used command in command prompt (eg adb pull / path / inside / of / Android / filename nome_file_destinazione) copy to your PC for a file or folder in the Android system.
Radio-or banda or baseband (not the FM radio): software designed to manage all the communications device (phone, wifi, bluetooth, gps, etc. ...
-Recovery: a kind of mini operating system that is used to retrieve the cell from critical situations (brick, malfunction, etc. ....), do nandroid backup, perform the wipe, flash rom coocked and file format. Zip. The Recovery is properly called Recovery Mode and means the recovery mode in which you can perform actions such as, installing updates, format the phone, format and partition the SD and more. Updating the recovery.img (you can also do without the root) with a different and we have modified provisions advanced features without having to do other steps.
-RSS: RSS (Really Simple Syndication - Guild simple): indicates an Internet protocol used to distribute information that is updated frequently, such as a blog on the Internet, audio or video broadcasts or news headlines.
-Rom: the operating system. coocked roms are usually in. zip and go through recovery flashate
Coocked-Rom: cooked rom, created by chefs (who put together parts of rom applications, modifications, patches and so on) composed and enriched with new features
-ROOT (I take verbatim from androidpedia): What is root? In Unix-like operating systems is denoted by the root user with the highest privileges, ie, system administrator, also known as super user or superuser. (Cited in Wikipedia). Android being a linux system, then the user is root, which allows you to have total control of the phone. What a privilege we have to have root permissions? We have TOTAL control of the telephone. rootare the procedure for your device varies from terminal to terminal, consult the relevant sections to find out how to make your root device ..
G-sensor (gyro): The G sensor detects the position and movement of your device. It helps to orient the display to view both vertically or horizontally depending on how you hold the device. The G-sensor can be used in games to control the actions and other applications that require a movement to be able to be activated.
-SDK (software development kit): Software development kit, which we find in the tools folder that contains the file ADB. You can download it from for all platforms (Windows, Linux, Mac OS).
-S.O. (operating system): see ROM. In fact ROM and SO tend to coincide but while the first term is used to indicate the contents of any memory or the memory itself (it is in fact for Read Only Memory), the second indicates more specifically at a very specific piece of software and not any content that a memory can accommodate.
-Streaming: The term indicates the transmission of streaming audio or digital video using the Internet.
-Superboot: method to become the superuser (root-administrator) of your smartphone, with which you can make changes to the system, such as flash ROM, modify system folders etc. ...
-Tap (capped, plugged): equivalent of left-click on PC, then click in, clicked. TAP LONG = equivalent to right click on pc
-Thetering (wifi, bluetooth and usb): Mode is a connection between the phone is another device (mostly PC), through which you can take advantage of the internet's first, and basically use it as a modem, the second ( which as I said before can be a PC or another phone yet). May be predominantly via USB connectivity, bluetooth or wifi phone.
-Tablet is a tablet device that differs from a smartphone to the screen size (usually greater than the 5 "and for its strong propensity to navigation and document management. It usually does not incorporate a module for telephone calls (one exception is the Galaxy Tab), but often have a data connection via 3G or 4G as well as the WIFI.
Google has developed a special version of Android, called HoneyComb (3.X) for release in 2011. Nevertheless, there are Tablet with Froyo.
-VGA The VGA (Video Graphics Array) indicates a resolution of the display of 640 x 480 pixels.
-WCDMA: The WCDMA (Wideband Code Division Multiple Access) is a protocol for the transmission of data in a 3G cellular network.
-WVGA: The WVGA (Wide Video Graphics Array) indicates a display resolution of 480 x 800 pixels.
Wipe Dalvik-CACHE: reset the system cache. amended by recovery takes place.
Wipe-DATE (factory reset): hard reset (reset phone to factory settings, deletes all data and applications in your phone, no memory card). some recovery in the wiping the data format factory, not a complete hard reset, but a reset of all data in your phone, for a complete hard reset you should also wipe the system and boot from the recovery of the advanced settings or proceed with the procedure manual keystroke! how to do the hard reset via keyboard shortcut see the guides in their respective sections of your smartphone.
-ZIPALIGN: A form of compression that is used to speed up execution of applications. zipalign unzip the file and aligns the compressing apk file limit so 4byte 'Android takes up less ram to read and read more' quickly and then recreates the file. apk ^ ^
If you know other terms that do not understand, this thread is yours.
P. S. I hope to be helpful
if you have another way to suggest you write
Nice work!
Another nice thread, great work again
Nice well detailed list of Android Terms. Will use this as a reference if needed. Great Job! :good:
bedalus said:
Another nice thread, great work again
Click to expand...
Click to collapse
thanks mate, always kind
jayjay3333 said:
Nice well detailed list of Android Terms. Will use this as a reference if needed. Great Job! :good:
Click to expand...
Click to collapse
thanks a lot, I can not beat thanks for today (already used)
updated
Thread moved http://forum.xda-developers.com/showthread.php?t=1756880

All Windows 10 Preview Builds

Welcome Guys
Here i will give you all windows 10 preview builds that is not available on Microsoft website... Below builds that are available right now!
New Software Give Warm welcome to windows 10 Lean
What is windows 10 lean software
Microsoft is working on a new edition of Windows 10 that Microsoft calls 'Windows 10 Lean' once installed is a whole 2GB's smaller in size compared to a normal edition of Windows 10 like Windows 10 Home or Windows 10 Pro.
keeping devices with a low amount of storage up to date with the latest Windows 10 feature updates. is not possible for low-end tablets and laptops with 16GB of internal storage or lower but Windows 10 Lean aims to fix this problem. But it comes with a cost as this removes loads of features just like Registry Editor, the Microsoft Management Console, wallpaper & More check out this "link" to find out what has been removed from windows 10 lean.
If your interested in downloading windows 10 lean check out skip ahead section below
(Tips before you download)
Programs you download from internet on buggy or risky software may not run as they should.
Please make sure you backup your stable software before you install this preview software.
Make sure you keep previous software installed for at least 1 week just in case you hit any issues & you can just roll back to previous software
Instructions
1. Download 32 bit or 64 bit software from below.
2. Once downloaded extract the file you downloaded.
(You can use extract software built into windows 10 or use 7-zip 32 bit download or 64 bit download
3. Once extracted mount the software
4. Click This PC with file explorer & Image file for the software should be next to C drive
5. Copy all files to USB stick or Burn it to DVD Disk
6. Once done Restart your computer & hit F12 or option shown on screen at start up to boot from usb
The install box will pop up to enter your language then continue from there. Or you can upgrade or Start clean software by running the software from file explorer.
If you need support please comment below.
Windows 10 Preview builds
Fast Ring
Windows 10 Pro 32bit Download
Windows 10 Pro 64bit Download
Windows 10 32bit 17755 Download
Windows 10 64bit 17755 Download
Skip Ahead
Windows 10 32bit 18234 Download
Windows 10 64bit 18234 Download
New Windows 10 Lean
Windows 10 Lean 17655 (Skip ahead) - 32 bit Download Risky Latest
Windows 10 Lean 17655 (Skip ahead) 64 bit Download Risky Latest
Last Chance
(Current software will be removed Soon)
Skip ahead
Builds I provide will have either status marked below. This is to help you out on how buggy or not software is. Please note i don't control how buggy the software is
Stable - This software is stable & shouldn't contain any bugs that will affect software from running. But bugs maybe present.
Buggy - This software is buggy & You may hit a bug while running this software.
Risky - This software is risky & May hit Blue screen or software may not run or may crash or lag.
Please keep in mind this is in preview. I'm not responsible for any bugs, Blue screens, crashes or lags caused by this preview build.
If anyone has any download issues please let me know
New Build for windows 10 pro 17115 32 bit & 64 bit - This build Doesn't have any bugs to check out change log head here if you have any issues with download let us know!
Change log for this build
Hello Windows Insiders!
This week we have 50 Windows Insider MVPs on campus as a part of the global MVP Summit. It’s been a pleasure to get face-to-face time with some of our biggest advocates as well as the people who help the overall Windows community the most.
Today, we are releasing Windows 10 Insider Preview Build 17115 (RS4) to Windows Insiders in the Fast ring.
A new privacy settings layout in the set up experience
This spring, we will release an update to Windows 10 that will include changes to the set up experience for privacy settings. This new design conveys focused information to help our customers make focused choices about their privacy and offers two new settings for Inking & Typing and Find my device. More details about the change can be found in this blog post here.
General changes, improvements, and fixes for PC
We fixed an issue where If you tried to open a file that was available online-only from OneDrive that hadn’t been previously downloaded to your PC (marked with a green checkmark in File Explorer), your PC could bugcheck (GSOD).
We fixed an issue where post-install at the first user-prompted reboot or shutdown, a small number of devices experienced a scenario wherein the OS fails to load properly and might have entered a reboot loop state.
We fixed an issue where the Microsoft Store might be completely broken or gone altogether after upgrading.
We fixed an issue where when you denied Movies & TV access to your videos library (through the “Let Movies & TV access your videos library?” popup window or through Windows privacy settings), Movies & TV would crash when you navigated to the “Personal” tab.
We fixed two issues impacting the usability of Windows Mixed Reality on the previous build (Windows Mixed Reality running at a very low frame rate (8-10fps), and a potential crash at startup that could cause Windows Mixed Reality to not work).
We fixed an issue from recent flights resulting the Direct Messages section of Twitter.com potentially not rendering in Microsoft Edge.
We fixed an issue from recent flights causing precision touchpads to periodically need a few tries to be able to move the mouse.
We fixed an issue impacting the Italian touch keyboard layout where the period key would act as a delete key in UWP apps.
We fixed an issue impacting the Czech touch keyboard layout where numbers on the &123 view couldn’t be inserted into UWP apps.
We fixed an issue where you couldn’t use touch to interact with the Timeline scrollbar.
We fixed an issue where a failed app update could result in that app becoming unpinned from the taskbar.
We fixed an issue where the controls in the Focus Assist Settings subpages didn’t have accessible labels.
We fixed an issue from the last few flights where after launching, minimizing, then closing UWP apps enough times, you would stop being able to launch UWP apps.
Known issues
There are currently no known issues for this flight however if any issues are discovered based off Insider feedback, we’ll add them here.
No downtime for Hustle-As-A-Service,
Click to expand...
Click to collapse
Now Available
I have added new build to skip ahead build 17618 for 32 & 64 bit.
Microsoft Store may be completely broken or disappeared altogether after upgrading to this build.
Change log
What’s new in Build 17618
Sets: Sets is designed to make sure that everything related to your task: relevant webpages, research documents, necessary files, and applications, is connected and available to you in one click. Starting today in RS5 builds, we have turned the Sets experiment back on so any Insider who has opted into Skip Ahead will be able to try out Sets. With Sets, 1st party experiences like Mail, Calendar, OneNote, MSN News, Windows and Microsoft Edge become more integrated to create a seamless experience, so you can get back to what’s important and be productive, recapturing that moment, saving time – we believe that’s the true value of Sets. Additional app integration with Sets is expected over time.
Sets supports Win32 apps in addition to UWP apps and websites!
If you are an Insider who was testing out Sets previously, you’ll find the following improvements to the experience:
Support for desktop (Win32) apps. Sets now supports File Explorer, Notepad, Command Prompt, and PowerShell. One of the top feature requests by Insiders has been tabs for File Explorer and with Sets you can get a tabbed File Explorer experience! Try it out with these apps and let us know what you think!
You can now launch apps from the new tab page by typing the app name into the search box.
UWP apps are launched in the same window replacing the new tab page.
The tab UI in Sets now shows icons including website favicons and app icons.
Resume your project with more control – When restoring your projects you’ll be prompted to restore related apps and webpages. In Timeline you’ll see when a project has multiple activities associated with it.
Here are a few keyboard shortcuts you can try out:
Ctrl + Win + Tab – switch to next tab.
Ctrl + Win + Shift + Tab – switch to previous tab.
Ctrl + Win + T – open a new tab.
Ctrl + Win + W – close current tab.
Here are a few things we’re still working on that aren’t quite finished yet:
Tab drag-and-drop does not work for re-ordering tabs. You can’t drag a tab to join another window.
When launching a supported desktop (Win32) app from a tabbed window, such as protocol/file launch or from the new tab page, it launches in a new window instead of auto-grouping to the existing window. You can work around this for now by holding down the Ctrl key while launching a supported desktop (Win32) app – note, for File Explorer, in particular, you will need to hold down Ctrl until the new tab with File Explorer appears, not just Ctrl + click and immediately release.
You may notice some flashes when switching between tabs within a Set.
If your display scaling is higher than 100%, using touch to interact with the Sets title bar won’t work.
If needed, you can find a setting to enable or disable Sets under Settings > System > Multitasking. We’re looking forward to your feedback as you try it out in today’s build!
Windows Mixed Reality
There are two issues impacting the usability of Windows Mixed Reality on this build. Windows Mixed Reality runs at a very low frame rate (8-10fps) that could result in some physical discomfort. And there are multiple crashes at startup that will cause Windows Mixed Reality to not work. For Insiders who want to keep Windows Mixed Reality working – you might want to consider hitting pause on taking new Insider Preview builds until these issues are fixed. You can pause Insider Preview builds by going to Settings > Update & Security > Windows Insider Program and pressing the “Stop Insider Preview builds” button and choosing “Pause updates for a bit”.
General changes, improvements, and fixes for PC
We fixed an issue resulting in 3 and 4 finger gestures on the touchpad being unresponsive in the last two flights.
We fixed an issue that could result in UWP apps sometimes launching as small white rectangular boxes.
We fixed an issue where the Settings tile didn’t have a name if you pinned it to Start.
We fixed an issue where navigating to Themes Settings crashed Settings.
We fixed a typo in Storage Sense Settings.
We fixed an issue resulting in all dropdowns in Settings appearing blank until clicked.
We fixed an issue that could result in Settings crashing after having navigated to and left Sound Settings.
We fixed an issue that could result in the labels for files on the desktop overlapping their icons.
We fixed an issue resulting in the hamburger button in Windows Defender overlapping the home button.
We’ve updated Start so that it now follows the new Ease of Access setting to enable or disable hiding scrollbars.
We’ve updated the Action Center so that notifications will now appear with a fade in animation when you open it.
We’ve updated the new notification to fix blurry apps so that it now will persist in the Action Center to be accessed later once the toast has timed out and dismissed.
We fixed an issue resulting in some app icons appearing distorted in Task View.
We fixed an issue where making a pinch gesture over the open apps in Task View might result in no longer being able to scroll down to Timeline.
We fixed an issue where pressing and holding on a card in Timeline would open the corresponding app, rather than bringing up a context menu.
We fixed an issue resulting in the title bar overlapping content when you opened your lists in Cortana’s notebook.
We fixed an issue resulting in the Windows Defender offline scan not working in recent builds.
We fixed an issue where the Japanese IME sometimes wouldn’t turn on correctly.
We fixed an issue where the floating dictation UI could be unexpectedly tiny.
We fixed an issue where the touch keyboard might stop invoking automatically after locking the PC and then unlocking the PC by using the touch keyboard to enter your PIN or password.
We fixed an issue where the touch keyboard number pad would show the period as a decimal separator for countries that use the comma as a decimal separator.
We fixed an issue resulting in not being able to turn on and off third-party IMEs using the touch keyboard.
We fixed an issue resulting in numbers not being inserted when flicking up on the top row of letters in the wide touch keyboard layout.
We fixed an issue where plugging in an external optical drive (DVD) would cause an Explorer.exe crash.
We fixed an issue resulting in DirectAccess not working in recent builds, where the connection would be stuck with status “Connecting”.
We fixed an issue where all apps in Task Manager’s Startup tab had the status “0 suspended”.
We fixed an issue where after upgrading your speaker volume might change to 67%.
We’ve updated Microsoft Edge’s Hub to now have an acrylic navigation pane.
We fixed an issue where it wasn’t possible to open a new inPrivate window of Microsoft Edge from the taskbar jumplist while in Tablet Mode.
We fixed an issue where dragging a Microsoft Edge tab out of the window and releasing hold of it somewhere over the desktop might periodically result in a stuck invisible window.
We fixed an issue where the keyboard combo to switch Virtual Desktops didn’t work if Microsoft Edge was open on multiple Virtual Desktops and focus was on the web content.
We fixed an issue that could result in tabs hanging and not loading content recently in Microsoft Edge after using the browser for a few days with an adblocker enabled.
We fixed an issue where clicking to zoom in on an image in Microsoft Edge would zoom into the top left corner rather than the area where you’d clicked.
We fixed an issue from the last few flights where Microsoft Edge might crash if you refreshed a window with a PDF open in it.
We fixed an issue in Microsoft Edge where favicons in light theme were unexpectedly getting black backgrounds.
We fixed an issue where the buttons on Game bar were not centered correctly.
We fixed an issue where in some games—such as Destiny 2 and Fortnite—mouse and keyboard input would still go to the game while Game bar was open.
We fixed an issue where keyboard and mouse input might not work correctly in Game bar when playing a first-person game (e.g. Minecraft).
We fixed an issue in the text box for Mixer stream title, using non-character keys (e.g. Tab, Delete, Backspace, etc.) might cause the game to hang for a few seconds.
We fixed an issue where bringing up Game bar using the Xbox button on an Xbox One controller didn’t work in some games.
We fixed an issue where certain games using Easy Anti Cheat could result in the system experiencing a bugcheck (KMODE_EXCEPTION_NOT_HANDLED).
We fixed an issue where we had observed seeing longer-than-normal delays during install at the 88% mark. Some delays were as long as 90 minutes before moving forward.
We fixed an issue in apps like Movies & TV where if you deny consent to access your library it crashes the app.
We fixed an issue where on post-install at the first user-prompted reboot or shutdown, a small number of devices would experience a scenario wherein the OS fails to load properly and may enter a reboot loop state.
We fixed an issue where selecting a notification after taking a screenshot or game clip opens the Xbox app’s home screen instead of opening the screenshot or game clip.
We fixed an issue where tearing a PDF tab in Microsoft Edge will result in a bugcheck (GSOD).
Known issues
IMPORTANT: The Microsoft Store may be completely broken or disappeared altogether after upgrading to this build. Please see this forum post for details including a workaround on how to get the Microsoft Store back.
If you open Settings and clicking on any links to the Microsoft Store or links in tips, Settings will crash. This includes the links to get themes and fonts from the Microsoft Store.
If you try to open a file that is available online-only from OneDrive that hasn’t been previously downloaded to your PC (marked with a green checkmark in File Explorer), your PC could bugcheck (GSOD). You can work around this problem by right-clicking on these files and selecting “Always keep on this device.” Any file-on-demand from OneDrive that is already downloaded to the PC should open fine.
Office Insider + Skip Ahead = More awesome!
Our friends on the Office team want to reiterate their invitation for Windows Insiders to participate in feedback and product usage which will inform the next generation of Office innovations! Windows and Office are continually looking for the best-connected experiences. Your feedback is extremely valuable to us and will help us to understand customer needs and scenarios and to prioritize our investments in the coming months. Please join the Office Insider Program to help directly affect product design decisions!
No downtime for Hustle-As-A-Service,
New Builds!
Sorry about late build updates i been busy. & Got brand new pc so we are back!
Now Available
I have added new build to Fast ring build 17133 for 32 & 64 bit. check it out download above. Check out change log below
UPDATE 4/10: We have released KB4100375 (OS Build 17133.73) to Windows Insiders running Build 17133 in the Fast, Slow, and Release Preview rings. This update includes the following quality improvements (no new OS features):
Addresses a PDF security issue in Microsoft Edge.
Addresses an issue that, in some instances, prevents Internet Explorer from identifying custom controls.
Security updates to Internet Explorer, Microsoft Edge, Microsoft scripting engine, Windows kernel, Microsoft graphics component, Windows Server, Windows cryptography, and Windows datacenter networking.
UPDATE 4/9: We are continuing to test our targeting and as a result, not all Windows Insiders in the Release Preview ring will see Build 17133 offered at this time. We’ll update this post when full availability is reached.
UPDATE 4/5: We have released Windows 10 Insider Preview Build 17133 (RS4) to Windows Insiders in the Release Preview ring. Not all Insiders in the Release Preview ring will be immediately targeted to receive this flight. We are targeting full availability to Release Preview Monday 4/9. However, if you’d like to install immediately, a manual check for updates under Settings > Update & Security > Windows Update will present the build.
UPDATE 3/30: We have released Windows 10 Insider Preview Build 17133 (RS4) to Windows Insiders in the Slow ring. As part of this flight, we are testing the engineering systems responsible for the deployment of Windows 10 feature updates to customers. As such, not all Insiders in the Slow ring will be immediately targeted to receive this flight. We are targeting full availability to the Slow ring on Monday 4/2 however, if you’d like to install immediately, a manual check for updates under Settings > Update & Security > Windows Update will present the build.
NOTE: It will be listed as “Feature update for Windows 10, version 1803”.
Hello Windows Insiders!
Today, we are releasing Windows 10 Insider Preview Build 17133 (RS4) to Windows Insiders in the Fast ring.
Just like in Build 17128, you will also notice that the watermark at the lower right-hand corner of the desktop has disappeared in Build 17133. Again, we are in the phase of checking in final code to prepare for the final release.
General changes, improvements, and fixes for PC
We fixed an issue resulting in certain devices with BitLocker enabled unexpectedly booting into BitLocker recovery in recent flights.
We fixed an issue resulting in not being able to change the display resolution when there were 4 or more monitors connected, due to the confirmation prompt hanging when you selected “Keep changes”.
We fixed an issue where clicking suggested search terms when typing in the Microsoft Edge URL bar didn’t do anything.
Known issues
There are currently no major known issues for this flight however if any issues are discovered based off Insider feedback, we’ll add them here.
I have also added new build to Skip ahead build 17639 for 32 & 64 bit. check it out download above. Check out change log below
Hello Windows Insiders!
Today, we are releasing Windows 10 Insider Preview Build 17639 (RS5) to Windows Insiders who have opted into Skip Ahead.
What’s new in Build 17639
The next wave of Sets improvements is here
What belongs together stays together – we designed Sets to help you keep webpages, documents, files, and apps connected. We’ve been hard at work since our first wave of Sets improvements for RS5, and when you install today’s build you’ll find:
Drag and drop app tabs within and between Sets windows is now supported: It works just like it sounds! You can now drag an app tab around within the Set or combine tabbed app windows into Sets.
Note: If you open a Microsoft Edge tab outside of a Set, you can’t drag and drop it into a Sets window. Drag and drop for Microsoft Edge web tabs within Sets isn’t supported yet and you may experience a crash if this is attempted.
Tabs are now bubbled up in Alt + Tab: Have Photos, Microsoft Edge, and OneNote tabbed together? You can now use Alt + Tab to switch between them. Prefer to only show the primary window in Alt + Tab? There’s a new setting – more on that in just a moment…
Note: If you have multiple Microsoft Edge windows in a Set, only the one most recently accessed will be visible in Alt + Tab.
Improved Settings for Sets: We’ve updated the Settings for Sets via Settings > System > Multitasking. To start with, Sets now has its own section on this page, and is searchable (try typing “Sets” or “tabs” and it will appear in the dropdown). We’ve also added a setting to control the Alt + Tab behavior mentioned above.
New Sets section highlighted under Multitasking Settings.
File Explorer & Sets Improvements: We’ve heard your feedback – you’d like it to be easier to get two File Explorer windows grouped together, and we’re working on it. To start with, you no longer need to hold CTRL on the new tab page to launch a File Explorer window in a tab (this was a temporary necessity with the last wave). We’ve also added a new keyboard shortcut to open a new tab when a File Explorer window is in focus: Ctrl + T. Remember, you can use Ctrl + N to open a new window, and Ctrl + W to close the window/tab.
Finally, we’ve added some new UI for easily opening new tabs and windows in the File Menu.
Showing File Explorer’s File menu, with new Open new tab option.
And also, in the context menu when right-clicking on a folder.
Showing a folder’s context menu in File Explorer. Open in a new tab is highlighted.
New context menu options for tabs in Sets: If you right-click on a Sets tab, you’ll discover we’ve added several options for you to leverage, including “close other tabs”, “move to new window”, and “close tabs to the right”.
Showing context menu for a tab in Sets, has Close tab highlighted.
Improvements to Previous Tabs: We’ve done a few things to improve the experience in this space, including:
• You can now pick and choose which Previous Tabs you want to restore, instead of only being able to restore all tabs.
You can now pick and choose which Previous Tabs you want to restore, instead of only being able to restore all tabs. Note: if you use the Sets activity card in Timeline, it will automatically restore all tabs.
You can now restore Previous Tabs from any type of activity – whereas with the previous wave of features we only supported restoring tabs when the primary window was a document.
When you open a document that previously had tabs, a prompt will appear offering to restore those tabs, and the Previous Tabs button will be in the filled state. For things that aren’t documents, a prompt will not automatically appear, but you’ll know that there are tabs available to restore because the Previous Tabs button will be in the filled state.
We added an animation to the experience when there are no Previous Tabs available to be restored.
Other Sets improvements and fixes based on your feedback, including:
We fixed an issue where the active tab color wouldn’t be visible until you hovered over it.
We’ve been working on our polish, and you’ll notice that switching between open tabs is now a lot smoother.
We’ve improved the reliability when restoring tabs, fixing some issues where tabs didn’t restore as expected.
We fixed an issue where closing a tab in a Set then immediately opening a new tab might result in the window unexpectedly maximizing.
Here are a few things we’re still working on that aren’t quite finished / resolved yet:
File Explorer ribbon doesn’t stay pinned open across restart.It may take some time for the app exclude list in Sets settings to populate the first time it’s opened.
Sometimes it takes two tries to bring up an inactive tab from the taskbar.
There’s a chance that you may see an unexpected second row of tabs when you open the new tab page.
When you launch an app or website from the new tab page, there’s a chance focus will change to a different tab.
The “filled” state of the restore icon in Sets will remain filled even though you’ve restored all tabs.
We’re aware of an issue that causes Narrator to read extra text when invoking Alt + Tab, and we’re working on a fix.
The new tab may sometimes open blank. Closing the tab then opening it again should resolve this issue.
Coming soon: We’re planning to enable Sets for more Win32 (desktop) apps including Office! In order to try this new experience out with Office, you’ll need to be an Office Insider running the latest Office builds. Sign-up to be an Office Insider today if you aren’t already!
Bluetooth battery percentage in Settings
In Bluetooth & other devices Settings, you can now check the battery level of your Bluetooth devices. For Bluetooth devices that support this feature, the battery percentage will update whenever your PC and the device are connected.
Bluetooth page in Settings. Shows Surface Pen with 71% battery.
Windows Calculator Improvements
Windows Calculator has been updated (version 10.1803.711.0) to now correctly calculates square roots for perfect squares (integers that are squares of other integers). Because of the arbitrary precision arithmetic library used by the Calculator app, the square root calculation is an approximation calculated using the Exponential Identity function.
Previously, when you would calculate the square root of 4, the result would be 1.99999999999999999989317180305609 which would be rounded to 2 when displayed, because we calculated enough digits to do the rounding correctly. However, as soon as you subtract 2, you would see the remaining digits.
After this update, the square root calculation now recognizes perfect squares and correctly returns exactly 2 for the square root of 4.
General changes, improvements, and fixes for PC
We fixed an issue resulting in duplicate entries in Disk Management.
We fixed an issue that could result in certain UWP apps silently terminating when minimized.
We fixed an issue resulting in certain devices with BitLocker enabled unexpectedly booting into BitLocker recovery in recent flights.
We fixed a race condition that could result in the taskbar not autohiding after opening and closing the Start menu while a fullscreen window was visible.
We fixed an issue where typing in Start would switch to a blank Cortana screen if Start was open when the PC went to sleep.
We fixed an issue when using Arabic as your display language where after using the X to close the touch keyboard in a UWP app text field it might stop coming up automatically in that field.
Sometimes having too many choices can be confusing and less is more. That is why this new build has consolidated the places where users can adjust their display brightness by removing the display brightness slider in Control Panel Power Options and the “Display brightness” section under Power Options Advanced Settings. Don’t worry! You can still adjust your display brightness via Settings > System > Display settings, the Action Center, and via keyboard hot keys.
Known issues
If you open Settings and clicking on any links to the Microsoft Store or links in tips, Settings will crash. This includes the links to get themes and fonts from the Microsoft Store, as well as the link to Windows Defender.
On resuming from sleep, the desktop may be momentarily visible before the Lock screen displays as expected.
When Movies & TV user denies access to its videos library (through the “Let Movies & TV access your videos library?” popup window or through Windows privacy settings), Movies & TV crashes when the user navigates to the “Personal” tab.
Recommended Training for Windows Insiders
We’d like to take this opportunity to highlight some training courses that might interest some Windows Insiders from the Microsoft Professional Program:
For Windows Insiders interested in taking the first step in becoming an AI engineer, check out this track here on Artificial Intelligence. You should also check out GeekWire’s article covering the track too!
For Windows Insiders interested in diving deeper into the world of IT support, check out this track here.
Insider Story
Check out this article on the Windows Insider website to find out how Windows Insider Vincent Pendleton uses Paint 3D as a go-to tool for teaching astronomy!
Windows Insider Vincent Pendleton uses Paint 3D for teaching astronomy!
I will soon add Slow, and Release Preview rings & downloads soon check back soon for more!
I always download them from here:
https://tb.rg-adguard.net/public.php
or generate the ISOs on my own from the UUP files:
https://uup.rg-adguard.net/
MagicAndre1981 said:
I always download them from here:
https://tb.rg-adguard.net/public.php
or generate the ISOs on my own from the UUP files:
https://uup.rg-adguard.net/
Click to expand...
Click to collapse
Some people prefer not to go through that & just want to download it straight. I don't mind taking so much time putting files together & sharing them to public
Welcome to Brand NEW!
I'm now releasing Brand NEW software. Give warm welcome to Windows 10 Lean Windows 10 lean is brand new software Microsoft released for devices with 16 GB or less for low end devices for more information do check out above.
As well as windows 10 lean I'm also releasing Windows 10 17134 fast & Windows 10 17650 & 17655 Skip ahead..........
This also means i'm planning to remove builds from our thread........ Current builds listed below will be removed starting 31 may 2018
* Windows 10 17110 fast ring will be removed 31 May 2018
* Windows 10 17112 fast ring will be removed 7 June 2018
* Windows 10 17115 fast ring will be removed 14 June 2018
also current builds will be removed starting 7 June listed below.......
* Windows 10 17604 skip ahead will be removed 7 June 2018
Windows 10 17618 skip ahead will be removed 14 June 2018
The current builds listed above will be placed within Last chance.......
Now thats out the way lets get into the change log for Windows 10 17134 fast & Windows 10 17650 & 17655 skip ahead........
Windows 10 Pro build 17134 (Fast) for 32 bit & 64 bit now available for download above check out change log below
UPDATE 4/20: We have released Windows 10 Insider Preview Build 17134 (RS4) to Windows Insiders in the Slow ring and Release Preview ring.
Hello Windows Insiders!
Today, we are releasing Windows 10 Insider Preview Build 17134 (RS4) to Windows Insiders in the Fast ring. This build has no new features and includes the fixes from KB4100375 as well as some fixes for general reliability of the OS. As Build 17133 progressed through the rings, we discovered some reliability issues we wanted to fix. In certain cases, these reliability issues could have led to a higher percentage of (BSOD) on PCs for example. Instead of creating a Cumulative Update package to service these issues, we decided to create a new build with the fixes included. This just reinforces that Windows Insiders are critical to helping us find and fix issues before releasing feature updates to all our customers so thank you!
Windows 10 pro build 17650 (Skip ahead) 32 bit & 64 bit now available for download above. Check out change log below
Today, we are releasing Windows 10 Insider Preview Build 17650 (RS5) to Windows Insiders who opted in to Skip Ahead.
What’s new in Build 17650
Windows Defender Security Center gets a Fluent Design refresh
We’ve heard your feedback and when you install this build you’ll find we’ve updated Windows Defender Security Center (WDSC) to include the Fluent Design elements you know and love. You’ll also notice we’ve adjusted the spacing and padding around the app and will now dynamically size the categories on the main page if more room is needed for extra info. Last but not least, we’ve also updated the title bar of the app so that it will now use your accent color if you’ve enabled that option in Color Settings – with Sets enabled, you will see this color in the WDSC tab.
Windows Defender Firewall now supports Windows Subsystem for Linux (WSL) processes
You can add specific rules for a WSL process in Windows Defender Firewall, just as you would for any Windows process. Also, Windows Defender Firewall now supports notifications for WSL processes. For example, when a Linux tool wants to allow access to a port from the outside (like SSH or a web server like nginx), the Windows Defender Firewall will prompt to allow access just like it would for a Windows process when the port starts accepting connections. This was first introduced in Build 17627.
General changes, improvements, and fixes for PC
We fixed an issue where File Explorer would always open with the ribbon minimized, rather than remembering how you’d left it.
We fixed an issue where elements on the main page of the Windows Defender Security Center app would slightly change size on mouse hover.
We fixed an issue where non-default languages might unexpectedly have the option to remove in Settings greyed out.
We fixed an issue where the Color Filters and High Contrast icons were switched in Settings.
We fixed an issue where clicking links in Settings that launched other apps would result in Settings crashing and nothing else happening.
We fixed an issue resulting in some people experiencing a Settings crash when navigating to Apps > Default Apps > Set defaults by App.
Known issues
On resuming from sleep, the desktop may be momentarily visible before the Lock screen displays as expected.
When Movies & TV user denies access to its videos library (through the “Let Movies & TV access your videos library?” popup window or through Windows privacy settings), Movies & TV crashes when the user navigates to the “Personal” tab.
Tiling and cascading windows, including features like “View Side by Side” in Word, will not work for inactive tabs.
The Office Visual Basic Editor window will currently be tabbed but is not intended to be in the future.
Opening an Office document while the same app has an existing document open may cause an unintended switch to the last active document. This will also happen when closing a sheet in Excel while other sheets remain open.
Local files or non-Microsoft cloud files will not be automatically restored and no error message will be provided to alert the user to that fact.
Sets UX for Office Win32 desktop apps is not final. The experience will be refined over time based on feedback.
The top of some Win32 desktop app windows may appear slightly underneath the tab bar when created maximized. To work around the issue, restore and re-maximize the window.
Closing one tab may sometimes minimize the entire set.
We’re aware of an issue that causes Narrator to read extra text when invoking Alt + Tab, and we’re working on a fix.
Using arrow and Page Up / Page Down keys doesn’t work to scroll webpages in Microsoft Edge. You’ll need to use another input method (mouse, touch, or touchpad).
If you complete the setup for a Windows Mixed Reality headset on this build, the headset will remain black until it is unplugged and reconnected to the PC.
Windows 10 pro build 17655 (Skip ahead) 32 bit & 64 bit now available for download above. Check out change log below
Today, we are releasing Windows 10 Insider Preview Build 17655 (RS5) to Windows Insiders who opted in to Skip Ahead.
What’s new in Build 17655
Mobile Broadband (LTE) connectivity on Windows gets a makeover
Windows is transforming the networking stack after 20 years through the Net Adapter framework. This framework introduces a new, more reliable, network driver model that inherits the goodness of the Windows driver framework while bringing an accelerated data path.
In this build, we are introducing a new and improved Mobile Broadband (MBB) USB class driver based on this Net Adapter framework. We can’t wait for you to try out our new driver in the latest RS5 Insider Preview builds.
If your PC supports Mobile Broadband, i.e., your PC relies on cellular network for connectivity, and you want to help out? Here is what you need to do:
Step 1: Ensure your PC can support SIM cards and USB modems (either over the internal USB bus or using a USB dongle for cellular connectivity).
Step 2: Install this build (Build 17655 and higher) and setup cellular connectivity.
Step 3: Choose the Net Adapter based MBB USB class driver as default driver.
Navigate to Device Manager. (You can right-click on the Start button to get there.)Go to Network Adapters -> Generic Mobile Broadband Adapter or xxxxx Mobile Broadband Adapter
Right-click and choose update driver -> Browse my computer for driver software -> Click on Let me pick from a list of available drivers on my computer -> Choose Generic Mobile Broadband Cx Net Adapter -> Click Next.
Once installed reboot for the new driver to take effect.
Ensure the status of the connection remains “Connected”.
Note: Follow the instructions in Step 5 to revert to the default driver(xxxxx Mobile Broadband Adapter), in case of issues with Net Adapter driver(Generic Mobile Broadband Cx Net Adapter).
You are all set. We are excited for you to try our driver!
Final Step: For Internet access, try using cellular network primarily by turning off Wi-Fi
To report issues and give feedback, use Feedback Hub on your PC and set Category and subcategory as Network and Internet -> Connecting to a cellular network. Use [cxwmbclass] in the summary.
General changes, improvements, and fixes for PC
In this build, the brightness toggle from the Battery flyout in the Notification Area on the taskbar has been removed for an improved user experience.
We fixed an issue in Microsoft Edge where dragging a favorite from one folder in the favorites bar to another didn’t work.
Known issues
We’re investigating an issue where the mouse cursor may disappear when hovering over certain UI elements and text fields.
On resuming from sleep, the desktop may be momentarily visible before the Lock screen displays as expected.
When Movies & TV user denies access to its videos library (through the “Let Movies & TV access your videos library?” popup window or through Windows privacy settings), Movies & TV crashes when the user navigates to the “Personal” tab.
We’re aware of an issue that causes Narrator to read extra text when invoking Alt + Tab, and we’re working on a fix.
Using arrow and Page Up / Page Down keys doesn’t work to scroll webpages in Microsoft Edge. You’ll need to use another input method (mouse, touch, or touchpad).
If you complete the setup for a Windows Mixed Reality headset on this build, the headset will remain black until it is unplugged and reconnected to the PC.
Known issues for Sets & Office
Sets UX for Office Win32 desktop apps is not final. The experience will be refined over time based on feedback.
The top of some Win32 desktop app windows may appear slightly underneath the tab bar when created maximized. To work around the issue, restore and re-maximize the window.
Closing one tab may sometimes minimize the entire set.
Tiling and cascading windows, including features like “View Side by Side” in Word, will not work for inactive tabs.
The Office Visual Basic Editor window will currently be tabbed but is not intended to be in the future.
Opening an Office document while the same app has an existing document open may cause an unintended switch to the last active document. This will also happen when closing a sheet in Excel while other sheets remain open.
Right-clicking a tab in Sets will not bring up a context menu in this build.
Local files or non-Microsoft cloud files will not be automatically restored, and no error message will be provided to alert the user to that fact.
swiftyste said:
Welcome to Brand NEW!
I'm now releasing Brand NEW software.
Click to expand...
Click to collapse
I just got 17661.1001 (17661.1001.180428-1349.RS_PRERELEASE_CLIENTPRO_OEMRET_X64FRE_DE-DE.ISO) from my link while you just shared the older build. you only waste your time . with the UUP page everyone can select with language/edition he wants.
But do what you want.
MagicAndre1981 said:
I just got 17661.1001 (17661.1001.180428-1349.RS_PRERELEASE_CLIENTPRO_OEMRET_X64FRE_DE-DE.ISO) from my link while you just shared the older build. you only waste your time . with the UUP page everyone can select with language/edition he wants.
But do what you want.
Click to expand...
Click to collapse
look i updated this thread 4:46 am just over 10 hours ago at that time build 17661 wasn't even out by then how can you release a build that wasn't even available to the public. I'm here to give out ios files i don't have to do this but i do. I take so much time & effort into this least you can do is be grateful.
I understand people can simply use links above to get there own files, own edition etc but as i keep saying some people don't want to go through so much hassle into getting a build they want thats why i made this. I didn't make this just for the fun of it I'm here helping people who want ios files. Now you can continue throwing comments like this or you can be grateful that someone is putting all his hard work & time in making ios files available for anyone to use.....
Another day another build
Skip ahead is now closed. If your on skip ahead new builds will still continue as normal RS5 is now available with fast ring.
Todays new build is Windows 10 17661 all downloads will be available under fast ring.......
Change log for 17661
Today, we are releasing Windows 10 Insider Preview Build 17661 (RS5) to Windows Insiders in the Fast ring in addition to those who opted in to Skip Ahead. Going forward, Insiders in the Fast ring and in Skip Ahead will receive the same RS5 builds.
What’s new in Build 17661
A modern snipping experience
Today we’re taking the first step toward converging our snipping experiences. The new modern snipping experience is here to help you effortlessly capture and annotate what you see on your screen. While working on this we’ve been carefully going over all your feedback about taking screenshots in Windows – you’ll find the flow and tools are optimized for sharing and make communicating visually with others quick and easy.
Originally introduced as part of the Windows Ink Workspace, Screen Sketch is now its own app which comes with a variety of benefits including that it can now be updated via the Microsoft Store.
What to expect once you update to this build:
Screen Sketch is now an app! Originally introduced as part of the Windows Ink Workspace, this comes with a variety of benefits, including that it can now be updated via the Microsoft Store, it will now show up in the list when you press Alt + tab, you can set the window size to be your preference if you like multitasking, and it even supports multiple windows (and tabs, thanks to Sets!).
Easy snipping is only a single step away. One of the loudest things we heard is that you want to be able to quickly snip & share a screenshot, and we’re making it happen! WIN + Shift + S will now bring up a snipping toolbar – snip a rectangle, something a bit more freeform, or full screen and it will go straight to your clipboard. If that’s all you need, you can take it from there. Want more, though? Immediately after taking a snip you’ll now get a notification that will take you and your snip to the Screen Sketch app where you can annotate and share away!
Immediately after taking a snip you’ll now get a notification that will take you and your snip to the Screen Sketch app where you can annotate and share away!
ALT-TEXT: Immediately after taking a snip you’ll now get a notification that will take you and your snip to the Screen Sketch app where you can annotate and share away!
But wait, there’s more! Is the WIN + Shift + S keyboard shortcut too long to remember? Guess what! We’ve added easy entry options for every input modality:
Just click the pen tail button. If you have a pen, go into Pen & Windows Ink Settings – you’ll find Screen Snipping is now an option for single click. This will launch you directly into our snipping experience:
Pen & Windows Ink Settings, showing click once to open Screen Snipping
Press Print Screen. You heard it right, just one button! It’s not enabled by default – go to Keyboard Settings – you’ll see a new option that says “Use the Print Screen key to launch screen snipping”. Opening Settings and searching for “print screen” will take you to the right page.
Press the quick action button in Action Center. Called “Screen snip” – it should be there as soon as you upgrade, but if not you can always enable it via Notifications & Actions Settings.
We’re looking for feedback! Tell us what you want to see next via the Feedback Hub under Apps > Screen Sketch – just click the ellipsis in the Screen Sketch app and it will take you straight there.
NOTE: After installing this build, please check the Microsoft Store for Screen Sketch app updates. You will need an updated version to receive the ability to crop screenshots.
Continuing the Sets Experiment
For the last few weeks, we have made the Sets experiment available to all Windows Insiders who have opted in to Skip Ahead. Now that the Fast ring and Skip Ahead are merging back together and will be receiving the same RS5 builds, we are going to continue with the controlled study just like we did back in December. This means that not all Insiders will see Sets. Insiders who were opted into Skip Ahead who had Sets previously will continue to have Sets. However, unlike the controlled study we did in December, the large majority of Insiders in the Fast ring will see Sets and a smaller group won’t.
More Fluent Design: Introducing acrylic in Task View
We’ve heard you like acrylic! We like it too – when you update to this build you’ll find that the entire Task View background now has a soft blur effect.
Task View and Timeline now has the soft blue effect called acrylic.
Windows Security improvements
Windows Defender Security Center is now called Windows Security. You can still get to the app in all the usual ways – simply ask Cortana to open Windows Security or interact with the taskbar icon. Windows Security lets you manage all your security needs, including Windows Defender Antivirus and Windows Defender Firewall.
We’re also bringing some changes to how we present threats and actions that need your attention, and we’re continuing to refine that over the coming months.
Focus assist improvements when gaming
Now Focus assist will turn on automatically when you’re playing any full screen game. No more interruptions when you’re crushing it. This behavior should be turned on automatically, but you can always check by going to Settings > System > Focus assist and ensuring the “When I’m playing a game” automatic rule is enabled.
Continuing our Sound Settings migration
Consolidating our settings experiences is an ongoing priority for us. We started our work moving Sound settings to Settings with the Windows 10 April 2018 Update, and we’re happy to announce the next piece of that with today’s flight. Device properties has now been integrated into Settings – just click on the links in Sound Settings and you’ll find a new page where you can name your device and select your preferred spatial audio format.
: Device properties page in Settings. Speakers have bene renamed to be “Jen’s awesome speakers”
Taking the Microsoft Pinyin and Wubi IMEs to the next level
Do you write in Chinese (Simplified)? We’re updating the Microsoft Pinyin IME! We’ve been focusing on addressing your performance, reliability and compatibility feedback. You’ll also notice a number of other improvements, including:
Design improvements – a new logo (for the Microsoft Pinyin IME), new IME toolbar, and dark theme support!
The new logo, new IME toolbar, and an example of the candidate pane in dark theme showing results for nihao.
An updated context menu. We’ve added a bunch of options to the IME mode indicator’s context menu in the taskbar, so you can quickly access the things you need.
Screenshot of the context menu that appears when you right click the mode indicator. Includes options such as send feedback, emoji, user defined phrases, and more.
The IME now uses the same UX for Expressive Input as other languages. You can bring it up by clicking the emoji button in the IME toolbar, or use the Emoji Panel hotkeys (WIN + period (.) or WIN + semicolon (). You can browse between Emoji, Kaomoji, and Symbol input when Chinese (Simplified) is the active locale.
The emoji panel, showing emoji page, kaomoji page, and symbols page.
We’d love to hear what you think of this new experience – this link will take you to the Feedback Hub where you can share your thoughts.
Improving HEIC support
We announced support for the High Efficiency Image File Format (HEIF) in Windows 10 Insider Preview Build 17623. We are happy to announce that in build 17661 you can now rotate HEIF-format images in File Explorer, and edit metadata, such as “Date taken”.
The new functionality requires the latest version of the HEIF package. The latest version will be installed automatically be the Store. If automatic updates are disabled you can download the HEIF package manually using this link.
HEIF files use the HEVC video codec to compress the image into approximately half the size of JPEG. If your Windows PC does not already have the HEVC video codec, it can be purchased from the Windows Store using this link.
To rotate a HEIF image file, simply right-click on it in File Explorer and select “Rotate right” or “Rotate left” from the menu. “Date taken” and other properties can be edited by clicking on “Properties” and selecting the “Details” tab.
Please stay tuned for additional functionality related to the HEIF file format in future Windows 10 Insider Preview builds!
Showing File Explorer and Properties dialog, having added properties to a .heic file.
General changes, improvements, and fixes for PC
We’ve made a number of improvements to how Narrator communicates the use of Sets – for example, Narrator will now inform you of the tabs by reading information such as Tab # N of M as you open and move between tabs. If you’re a Narrator user, please take a moment to try out Sets with today’s build and share feedback about the experience.
When you clean install or do a PC refresh, you’ll find that the Out of Box Experience for setting up your PC now includes a page for enabling activity history sync, which will help you continue what you were doing, even when you switch devices.
We’ve adjusted how you access skin tones in the Emoji Panel – you’ll now see a row of skin tone colors to select from when people emoji are in view.
We fixed an issue where using arrow and Page Up / Page Down keys didn’t work to scroll webpages in Microsoft Edge.
We fixed an issue resulting in the mouse cursor becoming invisible when hovering over certain UI elements and text fields in the last two flights.
We fixed an issue resulting in the mouse cursor not animating correctly in the last two flights.
We fixed an issue resulting in the Game Bar not appearing for some Insiders after pressing WIN+G.
When you hover over the Windows icon in the taskbar, a tooltip will now appear for Start.
We’ve updated the design of the handwriting panel so that the delete button is now a top level button. The button to switch languages is now under the “…” menu.
If you go to Pen & Windows Ink Settings, you’ll find a new option that allows your pen to behave like a mouse instead of scrolling or panning the screen.
Known issues
Certain notifications from Action Center may cause regular Explorer.exe crashes. We’re working to get this fixed in the next flight.
VPN may not be working after updating to this build. To get VPN working again, delete the %ProgramData%\Microsoft\Network\Connections\pbk* directories. Check if the VPN profile you need shows up already and if not, reinstall the appropriate VPN client app you need.
After updating to this build and installing the latest app updates from the Microsoft Store, when you log in to additional user accounts on the PC there may be missing apps. You can run the following PowerShell script when logged in to users with missing apps on your PC to fix the issue: Get-AppXPackage *WindowsStore* -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
On resuming from sleep, the desktop may be momentarily visible before the Lock screen displays as expected.
When Movies & TV user denies access to its videos library (through the “Let Movies & TV access your videos library?” popup window or through Windows privacy settings), Movies & TV crashes when the user navigates to the “Personal” tab.
We’re aware of an issue that causes Narrator to read extra text when invoking Alt + Tab, and we’re working on a fix.
If you complete the setup for a Windows Mixed Reality headset on this build, the headset will remain black until it is unplugged and reconnected to the PC.
[ADDED] If your PC appears stuck at “Preparing to install…” somewhere between the 80%-100% – please be patient and wait up to 30 minutes for this stage to complete.
Known issues for Sets & Office
Sets UX for Office Win32 desktop apps is not final. The experience will be refined over time based on feedback.
The top of some Win32 desktop app windows may appear slightly underneath the tab bar when created maximized. To work around the issue, restore and re-maximize the window.
Closing one tab may sometimes minimize the entire set.
Tiling and cascading windows, including features like “View Side by Side” in Word, will not work for inactive tabs.
The Office Visual Basic Editor window will currently be tabbed but is not intended to be in the future.
Opening an Office document while the same app has an existing document open may cause an unintended switch to the last active document. This will also happen when closing a sheet in Excel while other sheets remain open.
Right-clicking a tab in Sets will not bring up a context menu in this build.
Local files or non-Microsoft cloud files will not be automatically restored, and no error message will be provided to alert the user to that fact.
Just added latest build Windows 10 Pro 17666 32 bit & 64 bit to fast ring above
Change log for Build 17666
Hello Windows Insiders!
Today, we are releasing Windows 10 Insider Preview Build 17666 (RS5) to Windows Insiders in the Fast ring in addition to those who opted in to Skip Ahead.
What’s new in Build 17666
The next wave of Sets improvements is here!
We’ve been steadily going through your feedback, and this build contains a number of improvements based on what you’ve been telling us:
Bring on the acrylic! We love Fluent Design as much as you do – in today’s build you’ll find that Sets now have an acrylic title bar. We’re also adjusting the window border so that it’s now grey.
Notepad and Microsoft Edge together in Sets with a transparent title bar.
Recent Microsoft Edge tabs now show in Alt + Tab: Do you use Alt + Tab to quickly switch back and forth between apps? All of your recent Microsoft Edge tabs will now be included, not just the active one. Prefer it the old way? Use the “Pressing Alt + Tab shows the recently used…” setting in Multitasking Settings.
Should apps and websites open in a new window or a new tab? It’s up to you! The Sets section of Multitasking Settings now lets you set your windowing preference. If you choose “Window”, new windows won’t open into a new tab unless you explicitly click the + or drag with your mouse. Choosing “Tab” opens any new windows invoked from your running apps into tabs. As a reminder, if you would like to exclude any particular app from Sets, you can do this from this same settings page.
Want to mute one of your web tabs? You can now do that! When a webpage in Sets starts playing audio, you’ll now see a volume icon on the tab. Simply click it and the audio will mute, just like in Microsoft Edge.
Tabs will now restore with better performance – they’ll open in the background and use no resources until you go to the tab. This means you can restore a lot of tabs at once with no issues.
We’ve also made other fixes, changes, and improvements to Sets, including:
Task Manager has now been added by default to the list of apps where not to enable Sets.
We fixed an issue where right clicking a tab in the Sets title bar didn’t bring up a context menu.
We fixed an issue where if Microsoft Edge wasn’t already open, clicking the plus button in Sets would open all of your default websites along with the new tab page.
As always, thanks again for the great feedback – keep it coming! This link will take you to the Sets section of the Feedback Hub.
Say hello to your new clipboard experience!
Copy paste – it’s something we all do, probably multiple times a day. But what do you do if you need to copy the same few things again and again? How do you copy content across your devices? Today we’re addressing that and taking the clipboard to the next level – simply press WIN+V and you’ll be presented with our brand-new clipboard experience!
Showing the new clipboard UI. 4 entries listed in the history.
Not only can you can paste from the clipboard history, but you can also pin the items you find yourself using all the time. This history is roamed using the same technology which powers Timeline and Sets, which means you can access your clipboard across any PC with this build of Windows or higher.
Our new settings page for enabling this experience is under Settings > System > Clipboard – please try this out and share feedback! This link will open the Feedback Hub to where you can tell us about your experience and what you’d like to see next.
Showing Clipboard Settings – has toggles for saving multiple items and sync across devices.
Note: Roamed text on the clipboard is only supported for clipboard content less than 100kb. Currently, the clipboard history supports plain text, HTML and image less than 1MB.
Dark theme comes to File Explorer (and more!)
As many of you know, we added dark theme support to Windows based on your feedback. This setting is available under Settings > Personalization > Colors, and if you switch it any apps and system UI that support it will follow suit. Since releasing this feature, our top feedback request from you has been to update File Explorer to support dark theme, and with today’s build it’s happening! Along the way, we also added dark theme support to the File Explorer context menu, as well as the Common File Dialog (aka the Open and Save dialogs). Thanks again for everyone’s feedback!
This screenshot below is from the very latest code and not what’s in the flight. When you install this build, you will see some unexpected light colors in File Explorer and the Common File Dialog. This is something we’re aware of and are working to address.
File Explorer in dark theme.
Introducing extended line endings support for Notepad
Announced at Microsoft Build 2018, we’re excited to let you know that in addition to Windows line endings (CRLF), with today’s build Notepad now supports Unix/Linux line endings (LF) and Macintosh line endings (CR)!
Showing a Unix-style text file displaying properly now that Unix-style line endings are supported in Notepad.
For more details, check out the command line blog.
Notepad Search with Bing
To use simply highlight any words or phrase in Notepad and you can search Bing using the following methods:
Right click on the selected text and choose “Search with Bing” via the right-click (context) menu.
Edit menu ->”Search with Bing…”
CTRL + B.
With Sets, a new tab will open that will include the Bing search results page:
Right click on the selected text and choose “Search with Bing” via the right-click (context) menu.
Save time with Search Previews!
It’s been great seeing your positive feedback for the web preview we added last year and developments we’ve made to it since then. Now we have expanded previews to support apps, documents, and more. Search previews are here to help you:
Get back to what you were doing, such as a recent Word doc or Remote Desktop session
Jump-start your task, be it a new Outlook meeting, a quick comment in OneNote, or changing a setting
Disambiguate between files by seeing more info including file location, last modified, or author
Access quick answers from the web like “are bananas good for you?” “height of mt everest”
We made the Search experience wider so you can access information and actions in the preview faster than ever. The previews will be updated and improved over time, as we develop and add more features. Stay tuned!
Three examples of different previews side by side. PowerPoint, a Word doc, and a Bing search.
Start tile folder naming
You may have noticed the theme of feedback throughout today’s flight, and this announcement is no different. We understand that customizing your Windows experience is important to you – today we’re adding the ability to name your tile folders! To create a tile folder in Start, just drag one tile on top of another for a second then release. Continue dropping as many tiles into the folder as you’d like. When you expand the folder, you’ll see a new option to name it. The name will be visible when the folder is medium, wide, or large-sized. We appreciate everyone’s feedback requesting this!
Showing a named folder in Start.
Have a question about Settings?
We’ve heard your feedback that settings can be confusing sometimes, so we’re working with Bing to bubble up some of the most common questions we hear right into the Settings pages themselves. The FAQ’s are contextual in nature and aim to you to quickly get the answer you’re looking for to complete configuration tasks. It may even help you discover something you didn’t know was an option! Clicking on these questions will take you to Bing.com to display the answer.
Picture of Recovery Settings, now with “Have a question?” including the questions “How to create a Windows 10 USB recover drive”, “How to use System Restore on Windows 10”, “What are the system recover options in Windows.
NOTE: Currently this experience is supported in all en* markets (en-us, en-gb, en-ca, en-in, en-au).
Your phone and computer have made a new connection
From this week’s Build keynotes and Joe Belfiore’s blogpost on Microsoft 365, you may have seen what we’ve got instore for you in a future Insider Preview build release. There’s a new way to connect your phone to your PC with Windows 10 that enables instant access to text messages, photos, and notifications. Imagine being able to quickly drag and drop your phone’s photos into a document on your PC in one swift movement – without having to take your phone out of your pocket. Today, this experience allows you to link your phone to your PC. Surf the web on your phone, then send the webpage instantly to your PC to pick up where you left off to continue what you’re doing–read, watch, or browse with all the benefits of a bigger screen. With a linked phone, continuing on your PC is one share away. We’re working hard to expand these experiences so check back here for updates.
General changes, improvements, and fixes for PC
We fixed an issue with dll from the previous flight that could result in explorer.exe crashing every few minutes.
We fixed an issue resulting in VPN potentially not working after updating to the previous build.
We fixed an issue from the previous build where apps may appear to be missing in secondary accounts after receiving app updates from the PC’s primary account.
We fixed an issue from the previous flight resulting in a bugcheck with the error IRQ_NOT_LESS_OR_EQUAL in tcpip.sys.
We fixed an issue where a border would be visible when you maximized windows in the last few flights.
We’ve updated the design of This PC so that there’s no longer space displayed for the cloud files state icon (which isn’t relevant on this page).
The snipping toolbar (with WIN + Shift + S) will now follow your desired theme, light or dark.
We fixed an issue that could result in the Emoji Panel and the touch keyboard not displaying correctly if invoked immediately after restarting explorer.exe.
Known issues
If your PC appears stuck at “Preparing to install…” somewhere between the 80%-100% in Windows Update – please be patient and wait up to 30 minutes (or in some cases – longer than 30 minutes) for this stage to complete.
After completing the Windows Mixed Reality First Run experience, OOBE is black. Motion Controllers are also not recognized in exclusive apps. For Insiders who want to keep Windows Mixed Reality working – you might want to consider hitting pause on taking new Insider Preview builds until these issues are fixed. You can pause Insider Preview builds by going to Settings > Update & Security > Windows Insider Program and pressing the “Stop Insider Preview builds” button and choosing “Pause updates for a bit”.
On resuming from sleep, the desktop may be momentarily visible before the Lock screen displays as expected.
When Movies & TV user denies access to its videos library (through the “Let Movies & TV access your videos library?” popup window or through Windows privacy settings), Movies & TV crashes when the user navigates to the “Personal” tab.
We’re aware of an issue that causes Narrator to read extra text when invoking Alt + Tab, and we’re working on a fix.
If you complete the setup for a Windows Mixed Reality headset on this build, the headset will remain black until it is unplugged and reconnected to the PC.
Known issues for Sets & Office
Sets UX for Office Win32 desktop apps is not final. The experience will be refined over time based on feedback.
The top of some Win32 desktop app windows may appear slightly underneath the tab bar when created maximized. To work around the issue, restore and re-maximize the window.
Closing one tab may sometimes minimize the entire set.
Tiling and cascading windows, including features like “View Side by Side” in Word, will not work for inactive tabs.
The Office Visual Basic Editor window will currently be tabbed but is not intended to be in the future.
Opening an Office document while the same app has an existing document open may cause an unintended switch to the last active document. This will also happen when closing a sheet in Excel while other sheets remain open.
Local files or non-Microsoft cloud files will not be automatically restored, and no error message will be provided to alert the user to that fact.
Quick Update Today i updated with Windows 10 Slow Ring & Release Preview 17134 32 bit & 64 bit available above
Today I'm releasing os of build 17672 32 bit & 64 bit available above . This build is just bug fixes No new features & Marked stable
Here are change log for this build
What’s new in Build 17672
Windows Security Improvements
The Windows Security Center (WSC) service now requires antivirus products to run as a protected process to register. Products that have not yet implemented this will not appear in the Windows Security UI, and Windows Defender Antivirus will remain enabled side-by-side with these products.
For testing purposes, you can disable this new behavior in Windows Insider builds by creating the following registry key and rebooting the device. This key will be removed as we get closer to release.
HKLM\SOFTWARE\Microsoft\Security Center\Feature
DisableAvCheck (DWORD) = 1
General changes, improvements, and fixes for PC
We fixed the issue causing PCs to appear stuck at “Preparing to install…” somewhere between the 80%-100% in Windows Update when attempting to install a new build.
We fixed an issue where right-clicking to copy text in Microsoft Edge didn’t work in recent flights.
We fixed an issue with structuredquery.dll resulting some users experiencing a cyclical explorer.exe crash.
We fixed an issue resulting in the two-finger gesture to dismiss all notifications not working in the Action Center.
We fixed an issue resulting in the Korean IME sometimes entering duplicate characters when typing into text fields in certain websites in Microsoft Edge.
You can now refresh the Books pane in Microsoft Edge using a pull gesture.
When you pin books to Start from Microsoft Edge you will now see a live tile that cycles between the book cover and your current completion progress.
When printing PDFs from Microsoft Edge, you’ll find a new option to choose the scale of your print out (Actual size, or Fit to page).
We’ve updated Timeline so that in addition to seeing the number of available tabs to restore associated with a particular Sets activity, you can now cycle through them.
We’ve made some adjustments to improve the quality of audio when recording clips using the game bar (WIN+G). Thanks, everyone who shared feedback about this – please take a moment to try it out in today’s build and let us know how it goes.
We fixed an issue that could result in apps sometimes not fully maximizing to the top of the screen.
We fixed an issue resulting in certain devices not being able to wake from sleep in the last two flights (just showed a black screen).
When you hover over the leaf icon in Task Manager’s Status column, you will now see a tooltip describing what it means (this app is suspending processes to help improve system performance).
Building on our work from Build 17639, in addition to showing Bluetooth battery level in Settings for supported devices, you will now see a notification when one of those devices is low on battery.
For our WSL fans out there: if you’ve enabled WSL, you’ll now see an option to “Open Linux Shell here” when you Shift + Right-click on the whitespace of a File Explorer folder.
We’ve introduced preview support for same-site cookies in Microsoft Edge and Internet Explorer 11.
Known issues
After completing the Windows Mixed Reality First Run experience, OOBE is black. Motion Controllers are also not recognized in exclusive apps. If you need your Mixed Reality experience to be working it is advised you not take this build until these issues are fixed.
We’re aware of an issue that causes Narrator to read extra text when invoking Alt + Tab, and we’re working on a fix.
If you complete the setup for a Windows Mixed Reality headset on this build, the headset will remain black until it is unplugged and reconnected to the PC.
We’re making progress on our work to support dark theme in File Explorer and the Common File Dialog, and you’ll see improvements in this build, but we still have some work to do.
Insiders who use Remote Desktop, project their screen or have multiple monitors may experience explorer.exe hangs on this build. This issue can also lead to Microsoft Edge hangs.
ADDED: Please note that there is a known issue in this Windows Insider build that prevents the user from enabling Developer Mode through the For developers settings page. Unfortunately, this means that you will not be able to remotely deploy a UWP application to your PC or use Windows Device Portal on this build. There are no known workarounds at the moment. Please skip this flight if you rely on these features
Known issues for Sets & Office
Sets UX for Office Win32 desktop apps is not final. The experience will be refined over time based on feedback.
The top of some Win32 desktop app windows may appear slightly underneath the tab bar when created maximized. To work around the issue, restore and re-maximize the window.
Closing one tab may sometimes minimize the entire set.
Tiling and cascading windows, including features like “View Side by Side” in Word, will not work for inactive tabs.
The Office Visual Basic Editor window will currently be tabbed but is not intended to be in the future.
Opening an Office document while the same app has an existing document open may cause an unintended switch to the last active document. This will also happen when closing a sheet in Excel while other sheets remain open.
Local files or non-Microsoft cloud files will not be automatically restored, and no error message will be provided to alert the user to that fact.
Today I'm releasing os of build 17677 32 bit & 64 bit. To fast ring & Skip ahead. This build has bug fixes & has improvements.
Since this build has issues with Business guys using there AAD account to receive new flights & there is an issue causing the “Fix me” option to be presented which unfortunately will not work and you will not be able to receive the next flights. This build will be marked risky until there is fix in upcoming build.
Here are bug fixes & improvements in this build
What’s new in Build 17677
Microsoft Edge Improvements
New, clearer “Settings and more” (“…”) menu: We’ve redesigned the “Settings and more” menu in Microsoft Edge so it’s easier to find the options you’re looking for. The menu options are now organized into groups, with icons for each entry, and keyboard shortcuts (where applicable). Click the “…” button in the top-right corner of Microsoft Edge to see what’s new!
Screen capture showing the new Settings menu in Microsoft Edge, with icons and keyboard shortcuts visible.
See your top sites in the Jump List: You can now see your top sites in the Jump List on the Windows taskbar or Start Menu. Just right-click the Microsoft Edge icon to see a list of your most visited sites and pin the ones that matter most to you. Right-click on any entry to remove it from the list.
Organize the tabs you’ve set aside: We’re making it easier to organize the groups of tabs you’ve set aside, so you can remember what’s in each group when come back to it later. Once you’ve set a group of tabs aside, choose the “Tabs you’ve set aside” icon (top left corner), and click on the label for any group to rename it.
Screen capture showing the “Name these tabs” field in “Tabs you’ve set aside” in Microsoft Edge.
Do more from the “Downloads” pane: We’ve added options for “Show in folder” and “Copy link” to the right-click menu for downloads in the “Downloads” pane.
Screen capture showing right-click options on downloads in Microsoft
Narrator Improvements
Selection commands in Narrator Scan Mode: Narrator’s scan mode now supports selecting content in Microsoft Edge, Word, Outlook, Mail and most text surfaces. Standard shift- selection commands can be used as well as Control + A for the entire document. Caps + Shift + Down Arrow will speak the current selection. For a full list of selection commands, you can refer to Narrator’s Show Commands List by pressing Caps+F1. Once content is selected you can copy it to the clipboard by pressing Control + C. Formatting information will also be retained.
There is a known issue in Edge where selecting forward will get stuck. This issue is being worked on. Selection in general is a work in progress. We would love to hear your feedback as you try out these improvements. This link will take you to the Narrator section of the Feedback Hub, or you can press Caps + E while Narrator is running.
Kernel Debugging Improvements
We are adding support for IPv6 to KDNET. To make room for the larger headers required for IPv6, we’re decreasing the payload size of packets. As a result, we’re declaring a new version of the protocol, so that host PCs running the latest version of the debugger can be used to debug target PCs that only support IPv4. An updated SDK and WDK will be released soon with this support. There is a version of WinDbg Preview available at http://aka.ms/windbgpreview today. Follow the Debugging Tools for Windows blog for updates on KDNET IPv6 support and documentation in the future.
Task Manager Memory Reporting Improvements
We are making a small change in how memory used by suspended UWP apps/processes appears in Task Manager. Going forward, the main memory column in Task Manager “Processes” tab will not include memory used by suspended UWP processes. This is to more accurately reflect the OS behavior in which the OS can reclaim memory used by suspended UWP processes if needed. This means that if you have several UWP processes suspended in the background, the OS can take back memory from these suspended UWP processes if needed and use it for something that requires more memory. New and old memory columns will be available in “Details” tab for you to do comparisons if you want.
Mobile Broadband (LTE) connectivity on Windows gets a makeover
Windows is transforming the networking stack after 20 years through the NetAdapter framework. This framework introduces a new, more reliable, network driver model that inherits the goodness of the Windows driver framework while bringing an accelerated data path. More details coming soon.
We introduced the new and improved Mobile Broadband USB class driver based on the NetAdapter framework in Windows 10 Insider Preview Build 17655. We also shared instructions around how you can try out this latest non-default driver. Starting with this build, the MBB USB NetAdapter driver becomes the default driver. To try this out – install this build on a PC that relies on mobile broadband for cellular connectivity and setup cellular connectivity and turn off Wi-fi.
In case of issues using the driver, fall back on Wi-Fi or ethernet adapters for connectivity.
Don’t forget to report issues, Use Feedback Hub on your PC and set Category and subcategory as Network and Internet > Connecting to a cellular network. Use [cxwmbclass] in the summary. We look forward to your continued support!
General changes, improvements, and fixes for PC
We fixed an issue causing Narrator to read extra text when invoking Alt + Tab.
We fixed an issue resulting in Chinese and Japanese characters not rendering correctly in Command Prompt.
We fixed an issue where double-clicking text in Command Prompt only selected up to the first punctuation mark, not up to the space.
We fixed an issue resulting in the Home and End keys not working in Microsoft Edge in recent flights.
We fixed an issue resulting in a high volume of reliability issues in any XAML surface using Reveal in the previous flight.
We fixed an issue resulting in some apps like Adobe XD from crashing on launch in recent flights.
When you press F1 in Microsoft Edge it will now take you to the Microsoft Edge support page, rather than Microsoft Edge tips.
When a tab in Microsoft Edge is playing audio, the volume icon in the tab will now light up when you hover your mouse over it.
When you open local files (like PDFs) in Microsoft Edge, those files will now appear in the History section.
We fixed an issue where downloading files in Microsoft Edge could appear stuck on doing the security scan.
We fixed a recent issue where Ctrl + Shift + Left to select backwards in Notepad wouldn’t work at the end of a line.
When you execute “start cmd” from a Command Prompt window, a new Command Prompt tab will now be created if you have Sets enabled. This will also work for other start launches, like “start notepad”. To start something in a new window you can use the new /newwindow flag, for example “start /newwindow notepad”.
We fixed the issue that was preventing users from enabling Developer Mode through the For developers settings page.
Known issues
Important note for Windows Insider Program for Business folks: If you use your AAD account to receive new flights (via Settings > Update & Security > Windows Insider Program) there is an issue causing the “Fix me” option to be presented which unfortunately will not work and you will not be able to receive the latest flights. We’re working to fix this as soon as possible in an upcoming build.
We’re working on adding dark theme in File Explorer and the Common File Dialog, but we still have some things to do. You may see some unexpectedly light colors in these surfaces when in dark mode.
Insiders who use Remote Desktop, project their screen, or have multiple monitors may experience explorer.exe hangs on this build. This issue can also lead to Microsoft Edge hangs.
If you right-click apps in the taskbar you may find that the jump list is missing pinned and recent items.
After update, Mixed Reality Portal will reinstall the Mixed Reality Software and as a result environment setting will not be preserved. If you need your Mixed Reality home experience to persist it is advised you not take this build until these issues are fixed.
Known issues for Sets & Office
Sets UX for Office Win32 desktop apps is not final. The experience will be refined over time based on feedback.
The top of some Win32 desktop app windows may appear slightly underneath the tab bar when created maximized. To work around the issue, restore and re-maximize the window.
Closing one tab may sometimes minimize the entire set.
Tiling and cascading windows, including features like “View Side by Side” in Word, will not work for inactive tabs.
The Office Visual Basic Editor window will currently be tabbed but is not intended to be in the future.
Opening an Office document while the same app has an existing document open may cause an unintended switch to the last active document. This will also happen when closing a sheet in Excel while other sheets remain open.
Local files or non-Microsoft cloud files will not be automatically restored, and no error message will be provided to alert the user to that fact.
Insider Community
We love celebrating Insiders doing great things. Nori from Argentina has a visual impairment and is an amazing speaker of Japanese. Check out how she uses Cortana, Narrator, and other Windows 10 accessibility features to pursue her passion for anime culture and learning Japanese. Read her inspiring story.
Upcoming Bug Bash
We are excited to announce the dates for the next Bug Bash: June 22nd – July 1st. And we will hold a Bug Bash Webcast on our Mixer channel on June 27th – exact timing will be announced closer to the date. We’re excited to do another Bug Bash with our Windows Insiders!
Reminder
Please note: Some builds of windows 10 will no longer be available after 31 May 2018. Please check out 32 bit or 64 bit downloads above for last chance builds. After this date some builds will be removed!
swiftyste said:
Windows 10 Pro 17672 (Fast) - 64 bit Download Stable
Click to expand...
Click to collapse
hello sir
i have download this version and also make a bootable usb of this iso file but when i boot my laptop,and when The install box pop up to enter your language then it went to system repair windows
plz help
Jaspreet90 said:
hello sir
i have download this version and also make a bootable usb of this iso file but when i boot my laptop,and when The install box pop up to enter your language then it went to system repair windows
plz help
Click to expand...
Click to collapse
really weird :/ we have Windows 10 17677 here & brand new 17682 here (forgot to update lazy me )
Could be a number of reasons why its playing up but i have a look into it. Thanks for letting me know
Due to green screen issue (CRITICAL_PROCESS_DIED) with build 17682 i didn't add this to this thread & removed it for download
I have added build 17686 for fast ring & skip ahead 32 bit & 64 bit.
(This build has fixed green screen issue CRITICAL_PROCESS_DIED)
Here is change log
Today, we are releasing Windows 10 Insider Preview Build 17686 (RS5) to Windows Insiders in the Fast ring in addition to those who opted in to Skip Ahead.
What’s new in Build 17686
Improved Local Experience
We have introduced a new Region page that allows overrides to default regional format settings such as Calendar, First day of the week, Dates, Times, and Currency. Please go to Settings App – Time & Language – Region and give it a try.
Region Page in Settings app.
Local Experience Packs are Microsoft Store apps that deliver Windows display language quality improvements. You can now access them easily via the Settings App. Please go to Settings App – Time & Language – Language. Once here click on Add a Windows display language with Local Experience Packs link to download a Local Experience Pack from the Microsoft Store and start enjoying Windows in your preferred language.
Acquire Local Experience Packs from Settings app’s Language page.
Privacy Improvements
We wanted to let you know that if access to the microphone has been disabled in your privacy settings, we’ll now pop a notification the first time an attempt to use the microphone is blocked so you can review the settings if desired.
Notification showing “Your privacy settings blocked access to the microphone. Review these privacy settings”.
Windows Mixed Reality Improvements
This build includes several improvements for Windows Mixed Reality users:
This build no longer requires a physical monitor to be connected while running Mixed Reality in cases such as backpack PCs. Setting up WMR for the first time in Mixed Reality Portal and unlocking the PC on the sign in screen still, require a monitor to be connected initially. However, you can configure auto login to prevent needing to sign in for subsequent usage here. Using Windows Mixed Reality while standing requires setting up a room boundary.
Apps running in Windows Mixed Reality can now make use of the Camera Capture UI API to capture images of the mixed reality world using the system capture experience. Try running Mail in the Cliff House and inserting an image from your camera in a new message to share an image of the scenic view.
We’ve also made some adjustments to the mixed reality video capture experience in this build to make it easier to stop videos from the Start menu.
General changes, improvements, and fixes for PC
We fixed an issue resulting in frequent bugchecks on the previous build with CRITICAL_PROCESS_DIED error.
Settings > Gaming > Game DVR has been renamed “Captures”.
We fixed an issue where Paint and WordPad settings and recent files weren’t migrated during upgrades.
While we still have some work to do, you’ll find that when you update to this build, File Explorer will look a lot more complete in dark theme.
We fixed an issue resulting in the “Replace or skip files” dialog having some unexpected dark elements in recent flights.
We fixed an issue where the Japanese IME’s big mode indicator would appear in the center of the screen when bringing up UAC even if the mode indicator had been disabled in Settings.
We fixed an issue where the taskbar flyouts (network, volume, etc) didn’t have a shadow.
We fixed an issue where clicking on the plus button in the Clock and Calendar flyout from the taskbar didn’t do anything in recent flights.
We fixed an issue resulting in Command Prompt’s cursor appearing invisible in the last few flights.
We fixed an issue resulting in a high number of reliability issues when switching to the Microsoft Pinyin IME in recent flights.
We fixed an issue where the Emoji Panel might not dismiss if you clicked somewhere else on the screen.
[ADDED 6/7 for @Stanzilla] This build includes MSIX support. Using the SDK Build 17682 and higher, you can package your apps as MSIX.
Known issues
We’re working on adding dark theme in File Explorer and the Common File Dialog, but we still have some things to do. You may see some unexpectedly light colors in these surfaces when in dark mode.
After update, Mixed Reality Portal will reinstall the Mixed Reality Software and environment settings will not be preserved. If you need your Mixed Reality home experience to persist, we recommend skipping this build until these issues are fixed.
Some Insiders may find increased reliability and performance issues when launching Start on this build. We’re investigating.
Fonts acquired from Microsoft Store may not work in some apps.
When you upgrade to this build you’ll find that the taskbar flyouts (network, volume, etc) no longer have an acrylic background.
There is a bug in this build (and in Build 17682) that will impact driver testing scenarios. When executing HLK Component/Device driver tests, you may experience a bug check that blocks test execution. We are aware of the issue and actively working on a fix.
If you install any of the recent builds from the Fast ring and switch to the Slow ring – optional content such as enabling developer mode will fail. You will have to remain in the Fast ring to add/install/enable optional content. This is because optional content will only install on builds approved for specific rings. There has not yet been a RS5 build released to the Slow ring.
Known issues for Sets & Office
Sets UX for Office Win32 desktop apps is not final. The experience will be refined over time based on feedback.
The top of some Win32 desktop app windows may appear slightly underneath the tab bar when created maximized. To work around the issue, restore and re-maximize the window.
Closing one tab may sometimes minimize the entire set.
Tiling and cascading windows, including features like “View Side by Side” in Word, will not work for inactive tabs.
The Office Visual Basic Editor window will currently be tabbed but is not intended to be in the future.
Opening an Office document while the same app has an existing document open may cause an unintended switch to the last active document. This will also happen when closing a sheet in Excel while other sheets remain open.
Local files or non-Microsoft cloud files will not be automatically restored, and no error message will be provided to alert the user to that fact.
REMINDER: Upcoming Bug Bash
We are excited to announce the dates for the next Bug Bash: June 22nd – July 1st. And we will hold a Bug Bash Webcast on our Mixer channel on June 27th – exact timing will be announced closer to the date. We’re excited to do another Bug Bash with our Windows Insiders!
Windows 10 build 17692 Now available 32 bit & 64 bit
Change log for this build
Today, we are releasing Windows 10 Insider Preview Build 17692 (RS5) to Windows Insiders in the Fast ring in addition to those who opted in to Skip Ahead.
What’s new in Build 17692
SwiftKey intelligence comes to Windows
SwiftKey gives you more accurate autocorrections and predictions by learning your writing style – including the words, phrases and emoji that matter to you. It’s available for Android and iOS, and starting with today’s build SwiftKey will now power the typing experience on Windows when using the touch keyboard to write in English (United States), English (United Kingdom), French (France), German (Germany), Italian (Italy), Spanish (Spain), Portuguese (Brazil), or Russian.
Please take a moment to try typing and shapewriting on the touch keyboard in this build and let us know what you think
Microsoft Edge improvements
Control whether media can play automatically: One common piece of Insider feedback for Microsoft Edge is that you want more control over autoplay videos. In this build, we’ve added a new setting in Microsoft Edge to allow you to control whether sites can autoplay media. You can find an early preview of this setting under “Advanced Settings,” “Allow sites to automatically play media.” We’ll be improving these options and adding additional controls in upcoming flights and in response to your feedback, so stay tuned!
EDIT: Woops! We got a little too excited about this – this change is actually coming in a new build in the next few weeks. Stay tuned!
WebDriver improvements: Beginning with this build, we’re making it easier than ever to automate testing in Microsoft Edge using WebDriver. First, we’ve made WebDriver a Windows Feature on Demand, so you no longer need to match the build/branch/flavor manually when installing WebDriver. When you take new Windows 10 updates, your WebDriver binary will be automatically updated to match.
To install WebDriver, just turn on Developer Mode in Windows 10 Settings, or install the standalone feature under the “optional features” Settings page.
We’ve also updated WebDriver to match the latest W3C Recommendation spec with major new improvements. You can learn all about these changes over at the Microsoft Edge Dev Blog.
Ease of Access Improvements
Make Text Bigger: We’ve heard your feedback and are excited to announce that the ability to increase text size across the system is back and better than ever! When you go to Settings > Ease of Access > Display in today’s build, you’ll find a new setting called “Make everything bigger” – this slider will adjust text across the system, win32 apps, and UWP apps.
Ease of Access Setting, Display page. Make everything bigger option.
That means you can now make text bigger in Start menu, File Explorer, Settings, etc., without having to change the overall scaling of your system. Please try it out and share feedback!
Note: We’re investigating some issues with text clipping, not increasing in size everywhere, and problems when changing DPI settings.
Narrator Improvements
Based on your feedback you’ll find we’ve made a bunch of updates to Narrator with today’s build:
Narrator Standard Keyboard Layout: Narrator now ships with a new keyboard layout that is designed to be more familiar to screen reader users. Please refer to the accompanying documentation for details on these changes (Intro to New Narrator Keyboard Layout doc).
Automatic Dialog Reading: Narrator will now automatically read the contents of a dialog box when brought to the foreground. The experience is for Narrator to speak the title of the dialog, the focused element within the dialog and the static text, if any, at the top of the dialog. For example, if you try to close a document in Word with unsaved changes, Narrator will speak the title “Microsoft Word,” the focus “Save button” and the static text within the dialog.
Narrator Find: You now have the ability to search for text using Narrator’s new Find feature. If the text is found Narrator will move to the found item. Please refer to the accompanying keyboard layout documentation for command mapping.
List of Objects: Narrator now has the ability to present a list of links, headings or landmarks present in the application or content. You are also able to filter the results by typing in the list or the text field of the window. Please refer to the accompanying keyboard layout documentation for command mapping.
Selection in Scan Mode: Along with being able to select content in Narrator’s scan mode using Shift-selection commands, you can now also select a block of data by first moving to one end of the block and pressing F9, moving to the other end of the block and pressing F10. Once F10 is pressed the entire contents between the two points will be selected.
Stop on Controls in Scan Mode: Scan mode is a feature of Narrator that lets you use just a few keys to move around your screen. Scan mode is already on by default in Edge and you can toggle it on and off by pressing Caps lock + Spacebar. While you’re in scan mode, you can press the Up and Down arrow keys to read different parts of the page. With this update, the press of a Down arrow in Scan Mode will stop on interactive elements, so that they are easier to use. An example of this new behavior is that if you are reading a paragraph with multiple links, Narrator will stop on these links when you press the Down arrow.
We would love to hear what you think as you try out these improvements. This link will take you to the Narrator section of the Feedback Hub, or you can press Caps + E while Narrator is running.
Game bar Improvements
We’re now rolling out more functionality to the RS5 Game bar. In this flight are the following new features:
Audio controls. Change your default audio output device and mute or adjust the volume of games and apps running.
Performance visualizations. See your game’s framerate (FPS), CPU usage, GPU VRAM usage, and system RAM usage.
Playing Forza Horizon 3 with the new game bar UI showing. Has a performance monitor, recording controls, and audio options.
Game Mode Improvements
New options are now available for Game Mode that are expected to improve the gaming experience on desktop PCs. Gamers on PCs with many background processes may also see performance improvements when they toggle “Dedicate resources” in Game bar.
Search Improvements
Find software downloads faster in Search! Continuing our theme of improving the search preview experience, we’re rolling out an update to make it easier to find official download pages for Windows software you want to install. The team is continuing to develop this experience and more is coming. Check out the example below, and let us know what you think!
Search showing with GitHub download example, in the search preview pane a download button is visible.
This is a server-side* change so Insiders may see this update outside of Build 17692.
*Some experiences may vary by region.
Windows Mixed Reality Improvements
Starting with this build you can stream audio to both the headset and the PC speakers simultaneously. To try it out make sure that you can hear sound from your normal PC speakers when not running the Mixed Reality Portal (MRP) and from the headset’s audio jack or built-in headphones when mixed reality is running. Then close all apps, including MRP, and go to Settings > Mixed reality > Audio and speech to turn on “When Mixed Reality Portal is running, mirror headset audio to desktop.” You should now hear audio from both the headset and PC speakers when running mixed reality.
You may also notice some new error codes in Mixed Reality Portal to be more specific to certain failures. The Mixed Reality Portal app will also begin updating through the Store as we make infrastructure changes over the next several releases to support faster updates of mixed reality.
General changes, improvements, and fixes for PC
We fixed an issue resulting in audio glitching on systems with lots of firewall rules.
We fixed an issue from the last few flights where Eye Control would fail fast and not start.
We fixed an issue resulting in certain games, such as Counter Strike: Global Offensive, to crash on launch in the last two builds.
We fixed an issue resulting in Settings crashing when attempting to open Data Usage Settings in the last few flights.
We fixed an issue resulting in an unexpected “codecpacks.vp9” entry in the Start menu.
We fixed a recent issue for some Insiders resulting in an explorer.exe crash with AppXDeploymentClient.dll.
We fixed an issue resulting in some Insiders recently experiencing a bug check (green screen) with the error SYSTEM_SERVICE_EXCEPTION in afd.sys.
With Build 17672 we made a fix for an explorer.exe crash in structuredquery.dll – that fix stopped anyone new from encountering the crash, however we heard your reports that anyone already impacted was still impacted. Today’s build has a fix for this issue that should resolve it for anyone who was already impacted.
To improve discoverability, we’ve moved Delivery Optimization Settings to now be directly listed as a category under Settings > Update & Security.
We fixed an issue in Microsoft Edge impacting websites like Facebook.com, where when starting a message only the first contact name entered was automatically resolved while typing.
We fixed an issue in Microsoft Edge where if both images and text were selected, right-clicking on the image and selecting copy wouldn’t work.
We fixed an issue resulting in the Windows Security app crashing recently when adding a process to the exclusion list.
Known issues
The login screen will crash in a loop when the active sign-in method is set to Picture Password. We recommend removing your Picture Password before upgrading to this build.
This build will only be offered to Insiders running Builds 17655 and higher. You will not be able to update from RS4 to this build without first taking Build 17686 first.
We’re working on adding dark theme in File Explorer and the Common File Dialog, but we still have some things to do. You may see some unexpectedly light colors in these surfaces when in dark mode.
DRM video playback in Microsoft Edge from websites such as Netflix is broke on this build. But you should be able to use the Netflix app to play videos.
Some Insiders may find increased reliability and performance issues when launching Start on this build. We’re investigating.
When you upgrade to this build you’ll find that the taskbar flyouts (network, volume, etc) no longer have an acrylic background.
There is a bug in these builds that will impact driver testing scenarios. When executing HLK Component/Device driver tests, you may experience a bug check that blocks test execution. We are aware of the issue and actively working on a fix.
Due to a merge conflict some settings in Settings may be unexpectedly missing and / or missing their labels.
When Narrator starts you will be presented with a dialog that informs the user of the change to Narrator’s keyboard layout. This dialog may not take focus or speak after Narrator has started. We recommend that you Alt + Tab to this dialog, which should cause it to read.
The Settings for Keyboard Settings found in the Ease of Access center are missing text as well as visible values in the two combo boxes. Narrator users can interact with these controls and get some information pertaining to the settings that are available to them.
When using scan mode you may experience multiple stops for a single control. An example of this is if you have an image that is also a link. This is something we are actively working on.
If you change Narrator’s default Narrator key to just caps lock the Insert key will continue to function until the caps lock key is used as the Narrator key or if the user restarts Narrator.
If the Narrator key is set to just Insert and you attempt to send a Narrator command from a braille display then these commands will not function. As long as the Caps Lock key is a part of the Narrator key mapping then braille functionality will work as designed.
There is a known issue in automatic dialog reading where the title of the dialog is being spoken more than once.
The state of a Narrator command such as toggling Scan Mode on and off, volume up and down, voice speed, changing verbosity and context verbosity commands may not be announced when executed.
If you have previously performed a Find using Narrator’s Find feature and you bring up the dialog the text will not be cleared from the field.
Please refer to the Narrator Keyboard Layout documentation for other issues found in this release that pertain to Narrator. (Intro to New Narrator Keyboard Layout doc).
ADDED: If you have a Surface Studio, it will fail to update to Builds 17682, 17686, and 17692. This bug is fixed and you will be able to update to the next build we flight.
Known issues for developers
Please note that there is an issue in this build that regresses the time it takes to remotely deploy and debug a UWP application to a local virtual machine or an emulator. Please skip this flight if you rely on deploying or debugging to a local virtual machine or an emulator for your UWP development. Please note, this does not impact deployment and debugging on the local machine, to a physical target device, or a remote machine. We have seen the following workaround alleviate some of the performance regression here:
From an admin PowerShell window, please run the Disable-NetAdapterLso cmdlet and pass in the virtual switch information using -name attribute.
Example: PS C:\> Disable-NetAdapterLso -name <VirtualSwitchName>
You can use Get-NetAdapterLso to retrieve the virtual switch information for the corresponding Virtual Machine.
If you install any of the recent builds from the Fast ring and switch to the Slow ring – optional content such as enabling developer mode will fail. You will have to remain in the Fast ring to add/install/enable optional content. This is because optional content will only install on builds approved for specific rings. There has not yet been a RS5 build released to the Slow ring.
Known Issues for Game bar
The Game bar may crash on x86 machines.
The framerate counter chart sometimes doesn’t show up correctly over known games.
The CPU chart shows an incorrect percentage of usage in the top left corner.
Charts in the performance panel don’t update immediately when clicking through tabs.
The user’s gamerpic doesn’t display correctly, even after signing in.
Insider Community
We’ve got two stories from the Insider Community we want to highlight!
What do ninja cats and dragons have in common? Find out in this story, featuring an Insider who brings her creations to life with Windows Ink and Universal Windows Platform.
The Sisters of Mercy help people in harm’s way. Their IT Director is an Insider who protects the nuns from a different kind of threat. Check out our latest Insider Story.
And heads up Boston – Brandon LeBlanc and Jason Howard will be at the Prudential Center Microsoft Store on June 23rd from 1pm EST – 4pm EST to meet with Windows Insiders for some fun discussion on Windows 10! RSVP: https://aka.ms/bostoninsiders
REMINDER: Upcoming Bug Bash
Our next Bug Bash will be from June 22nd – July 1st – we will be holding a Bug Bash Webcast on our Mixer channel on June 27th, exact timing will be announced closer to the date. We’re excited to do another Bug Bash with our Windows Insiders!
I have been having issues downloading build 17704 to our file host. You can download this by google drive at the moment but this could be removed soon.
Cant provide change log due to xda character limit
but you can check out change log here
Our issues with build "17704" has now be resolved and won't be removed.....
Our newer build "17711" has some HDR features why not check out its change log...
Today, we are releasing Windows 10 Insider Preview Build 17711 (RS5) to Windows Insiders in the Fast ring in addition to those who opted in to Skip Ahead.
What’s new in Build 17711
Microsoft Edge Improvements
Learning tools get richer: Under learning tools available on Reading View, you can now see additional themes. These let you choose the theme color which is best for your eyes.
Under learning tools available on Reading View, you can now see additional themes.
Along with highlighting Parts of speech you can now also change the color in which the Past of speech should be highlighted as well as turn on an indicator right over it. Making it much easier to identify the part of speech.
Line focus: Helps improve focus while reading an article by highlighting sets of one, three, or five lines.
Line focus helps improve focus while reading an article by highlighting sets of one, three, or five lines.
New consent box for saving Autofill data: Microsoft Edge seeks your permission each time to save your passwords and card details for Autofill purposes. We have come up with improved design and string changes to the consent notification pop-up to improve discoverability and provide clarity on the value of saving this information. The changes include introducing password and payment icons, improved messaging, and highlighting of options. One interesting update would be the cool micro-animations for the new password and payment icons.
Improved design and text for dialog for when Microsoft Edge seeks your permission each time to save your passwords and card details for Autofill purposes.
PDF toolbar improvements: PDF toolbar can now be invoked by just hovering at the top to make the tools easily accessible to the users.
Fluent Design Updates
At Build 2018 we shared our vision of the evolution of Fluent Design. We introduced acrylic to many of our default menus recently, and today to help improve user focus we’re bringing added depth in the form of shadows.
Shadows provide visual hierarchy, and with Build 17711 many of our default modern popup type controls will now have them. This is enabled on a smaller set of controls than what the general public will eventually see, and Insiders can expect to see the support grow in subsequent builds.
Microsoft Edge context menu now has a shadow.
Note: This is a work in progress and you may see some glitches or oddities – this will be improved across flights.
Display Improvements
A new Windows HD Color page is now available under Display Settings! Windows HD Color-capable devices can show high dynamic range (HDR) content, including photos, videos, games, and apps. This depends on your display and your PC. The “Windows HD Color Settings” page linked in Display Settings now reports your system’s HD Color capabilities and allows HD Color features to be configured on capable systems. The HD Color settings page is your one-stop shop to understand and configure your device’s settings – if you have an HDR-capable display connected to a recent PC, please give it a try and send us feedback!
A new Windows HD Color page is now available under Display Settings! Windows HD Color-capable devices can show high dynamic range (HDR) content, including photos, videos, games, and apps.
Registry Editor Improvements
Have you ever been typing into the regedit address bar, and the next part of the path is just on the tip of your tongue, but you can’t remember? Starting with today’s build, you’ll now see a dropdown as you type to help complete the next part of the path! Oh, and you can also press Ctrl + Backspace to delete the last “word”, which makes backing up work that much faster (Ctrl + Delete will delete the next word).
Showing regedit with an autocomplete dropdown list.
General changes, improvements, and fixes for PC
REMINDER: Thank you for your continued support of testing Sets. We continue to receive valuable feedback from you as we develop this feature helping to ensure we deliver the best possible experience once it’s ready for release. Starting with this build, we’re taking Sets offline to continue making it great. Based on your feedback, some of the things we’re focusing on include improvements to the visual design and continuing to better integrate Office and Microsoft Edge into Sets to enhance workflow. If you have been testing Sets, you will no longer see it as of today’s build, however, Sets will return in a future WIP flight. Thanks again for your feedback.
We have fixed the issue that had regressed the time it takes to remotely deploy and debug a UWP application to a local virtual machine or an emulator.
We fixed an issue that could result in any surface that used reveal (including Start tiles and Settings categories) going totally white.
We fixed an issue resulting in some Insiders seeing a 0x80080005 error when upgrading to recent flights.
We fixed an issue where the “You are getting an update” dialog displayed unexpected extra characters.
We fixed an issue where aborting a shutdown would break input in UWP apps until rebooting.
We fixed an issue in recent flights where attempting to pin Settings categories to Start would either crash Settings or do nothing.
We fixed an issue resulting in Ethernet and Wi-Fi Settings unexpectedly missing content in the last flight.
We fixed a high hitting Settings crash impacting pages with Get Help content, including Touchpad Settings, Accounts Settings, and Family and Other Users Settings pages.
We fixed an issue that could result in Sign-In Settings being blank sometimes.
We fixed an issue where advanced keyboard settings might unexpectedly show “some settings are hidden by your org”.
We fixed an issue where creating a system image from backup and restore in control panel would fail on x86 machines.
We’ve decided to turn off the acrylic background in Task View – for now the design will return to how it shipped in the previous release, with acrylic cards instead. Thanks everyone who tried it out.
We fixed an issue where after using voice to ask Cortana certain questions you may not be able to ask her a second question with voice.
We fixed an issue that could result in explorer.exe crashing if certain apps were minimized when switching to tablet mode.
On the Share tab in File Explorer, we’ve updated the Remove access icon to be more modern. We’ve also made some tweaks to the Advanced security icon.
We fixed an issue that could result in the console forgetting the cursor color on upgrade and it getting set to 0x000000 (black). The fix will prevent future users from hitting this issue, but if you’ve already been impacted by this bug, you’ll need to manually fix the setting in the registry. To do this, open regedit.exe and delete the ‘CursorColor’ entry in ‘Computer\HKEY_CURRENT_USER\Console’ and any sub-keys, and re-launch your console window.
We addressed an issue where the audio driver would hang for many Bluetooth speakers and headsets which support the Hands-Free profile.
We fixed an issue resulting in the Microsoft Edge favorites pane scrolling sideways instead of up and down on mouse wheel in recent flights.
We fixed a few issues highly impacting Microsoft Edge reliability in the last few flights.
We fixed an issue resulting in Internet Explorer losing all settings and becoming unpinned from the taskbar with each of the last few flights.
We fixed an issue resulting in ethernet not working for some Insiders using Broadcom ethernet drivers on older hardware in the last flight.
We fixed an issue where remoting into a PC running the previous flight could result in just seeing a black window.
We fixed an issue that could result in certain games hanging when typing into the chat window.
We fixed an issue from the last flight where text predictions and shapewriting candidates wouldn’t appear in the touch keyboard’s candidate list until backspace is pressed while typing.
We fixed an issue where when Narrator started you would be presented with a dialog that informed the user of the change to Narrator’s keyboard layout and the dialog might not take focus or speak after Narrator has started.
We fixed an issue where when you changed Narrator’s default Narrator key to just caps lock the Insert key would continue to function until the caps lock key was used as the Narrator key or if the user restarts Narrator.
We fixed an issue where if your System > Display > Scaling and layout is not set to 100%, some text might appear smaller after reverting “Make text bigger” value back to 0%.
We fixed an issue where Windows Mixed Reality might get stuck after going to sleep and display a persistent error message in Mixed Reality Portal or a “Wake up” button that doesn’t work.
Known issues
We’re progressing in our work on adding dark theme in File Explorer and the Common File Dialog – you’ll notice improvements in this build, although we still have a few things left to do. You may see some unexpectedly light colors in these surfaces when in dark mode and/or dark on dark text.
In certain chases on PCs with multiple monitors, all the windows may appear shifted “up” and the mouse responds to the the wrong location. The workaround is use Ctrl + Alt + Del to bring up the task screen and then hit cancel. Repeat as necessary.
When you upgrade to this build you’ll find that the taskbar flyouts (network, volume, etc) no longer have an acrylic background.
We’re working on improving settings for HDR videos, games and apps in a new Windows HD Color page under System > Display. Some things temporarily will not work; notably, some users will not be able to enable/disable HDR display support.
Applications that use ICC color profiles may encounter errors such as Access Denied. This includes the Color Management control panel, and color profile switching on certain Surface devices.
When you use the Ease of Access Make Text bigger setting, you might see text clipping issues, or find that text is not increasing in size everywhere.
You may find your secondary displays don’t render correctly. Press Ctrl+Alt+Del and then cancel and that should resolve it.
Known issues for Developers
If you install any of the recent builds from the Fast ring and switch to the Slow ring – optional content such as enabling developer mode will fail. You will have to remain in the Fast ring to add/install/enable optional content. This is because optional content will only install on builds approved for specific rings.
Known issues for Narrator
We are aware of an issue causing Narrator speech to fade when waking from sleep mode. We are working on a fix.
When the Narrator Quickstart launches, Scan Mode may not reliably be on by default. We recommend going through the Quickstart with Scan Mode on. To verify that Scan Mode is on, press Caps Lock + Space.
When using Scan mode you may experience multiple stops for a single control. An example of this is if you have an image that is also a link. This is something we are actively working on.
If the Narrator key is set to just Insert and you attempt to send a Narrator command from a braille display then these commands will not function. As long as the Caps Lock key is a part of the Narrator key mapping then braille functionality will work as designed.
There is a known issue in automatic dialog reading where the title of the dialog is being spoken more than once.
The state of a Narrator command such as toggling Scan Mode on and off, volume up and down, voice speed, changing verbosity and context verbosity commands may not be announced when executed.
Known issues for Game bar
The framerate counter chart sometimes doesn’t show up correctly over known games.
The CPU chart shows an incorrect percentage of usage in the top left corner.
Charts in the performance panel don’t update immediately when clicking through tabs.
The user’s gamerpic doesn’t display correctly, even after signing in.
Bug Bash wrap up
Thanks again to all the Insiders who participated in our bug bash last week! Our next bug bash will be from July 27th to August 3rd – our last RS5 bug bash, and the last chance to participate in our contest where you could win a chance to come visit Microsoft Headquarters. In the meantime, if you haven’t already, check out our special edition wallpaper collection just for you.
Thanks again to all the Insiders who participated in our bug bash last week!
If you have any feedback about how this bug bash was run, please let us know !

Categories

Resources