├── LICENSE ├── README.md └── apis └── camera.md /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Yu Chen Hou 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # androidcompat 2 | Listing of various OEM specific bugs in Android across different versions. 3 | 4 | | API | Nexus | Samsung | LG | HTC | 5 | |--------------|--------|---|---|---| 6 | | Camera | | | | | 7 | | ... | | | | | 8 | | ... | | | | | 9 | | ... | | | | | 10 | | ... | | | | | 11 | 12 | #Samsung Stack Overflow posts 13 | * [sendUserActionEvent is null](http://stackoverflow.com/questions/18028666/senduseractionevent-is-null) 14 | * [Alarm Manager bug](http://stackoverflow.com/questions/34074955/android-exact-alarm-is-always-3-minutes-off) 15 | * [ACTION_USAGE_ACCESS_SETTINGS unavailable](http://stackoverflow.com/questions/28296633/android-usage-access-for-android-5-samsung-devices) 16 | * [Camera flash](http://stackoverflow.com/questions/5017455/how-to-use-camera-flash-led-as-torch-on-a-samsung-galaxy-tab/5017623#5017623) 17 | * [Camera orientation](http://stackoverflow.com/questions/16019165/summary-take-a-picture-utilizing-camera-intent-and-display-the-photo-with-corre/16295134#16295134) 18 | * [Media playback](http://stackoverflow.com/questions/16672568/mediaplayer-error-1-1004-aka-media-error-io-trying-to-stream-music-on-samsun/18378273#18378273) 19 | * [Samsung and their utterly useless app market](http://stackoverflow.com/questions/10342327/does-samsung-apps-support-a-uri-scheme-to-redirect-to-specific-apps/10361205#10361205) 20 | * [Transparency issues](http://stackoverflow.com/questions/20971221/transparency-issues-samsung-galaxy-s3) 21 | * [Lint issue](http://stackoverflow.com/questions/27449776/conflicting-lint-messages-regarding-paddingstart-usage) 22 | * [Service mode inaccessible](http://stackoverflow.com/questions/20248195/open-servicemode-menu-programatically-in-android/20453763#20453763) 23 | * [GC Issues](http://stackoverflow.com/questions/24021609/how-to-handle-java-util-concurrent-timeoutexception-android-os-binderproxy-fin/24173605#24173605) 24 | * [Scrolling bug](http://stackoverflow.com/questions/11571157/android-browser-samsung-galaxy-sii-scrolling-bug-on-web-forms-select-list-hit) 25 | * [Kies....ew](http://stackoverflow.com/questions/16954434/unable-to-connect-samsung-galaxy-tab2-gt-p3100-to-pc/18099852#18099852) 26 | * [Touchwiz browser](http://stackoverflow.com/questions/27439198/css-how-to-address-samsung-android-browser) 27 | * [Touchwiz events](http://stackoverflow.com/questions/14258234/onoffsetschanged-not-called-by-touchwiz) 28 | * [transactionTooLargeException](http://stackoverflow.com/questions/26385891/android-adding-window-failed-android-os-transactiontoolargeexception-on-samsu) 29 | * [Serialization exception](http://stackoverflow.com/questions/30703845/exception-on-serialization-on-samsung-galaxy-s5) 30 | * [VideoView won't play](http://stackoverflow.com/questions/9472052/android-3-1-galaxy-tab-videoview-wont-play?s=79%7C0.0000) 31 | * [The fact this one exists is speaks for itself](http://stackoverflow.com/questions/4928267/where-to-report-device-specific-bugs-to-samsung) 32 | * [MediaPlayer - OnBufferingUpdate bug](http://stackoverflow.com/questions/27835491/is-onbufferingupdate-event-called-every-second-while-playing) 33 | 34 | 35 | #Blog Articles 36 | [NoClassDefFoundError: MenuBuilder](http://verybadalloc.com/android/2015/12/19/special-place-for-samsung-in-android-hell/) 37 | -------------------------------------------------------------------------------- /apis/camera.md: -------------------------------------------------------------------------------- 1 | # Camera 2 | 3 | ### Known Samsung Issues 4 | 5 | - Inconsistent camera flash behavior: [source](http://stackoverflow.com/questions/5017455/how-to-use-camera-flash-led-as-torch-on-a-samsung-galaxy-tab/5017623#5017623) 6 | --------------------------------------------------------------------------------