Lili Wei
Lili Wei
Dear developer of transdroid, I have found out that the method setSupportActionBar of android support library v7 is widely used in the code. However, this method crashed your app on...
Hi there, When editing the account information and set birthday using DatePiker, Xabber crashes on Galaxy Note 4 (System language set in Chinese). I found the following discussions on Stack...
Hi, I noticed that class android.text.format.Time has been used in multiple places, such as: [Line 1371 in ScheduleImportantFragment.java](https://github.com/citiususc/calendula/blob/master/Calendula/src/main/java/es/usc/citius/servando/calendula/fragments/ScheduleImportFragment.java#L1373) [Line 276 and 280 in Schedule.java](https://github.com/citiususc/calendula/blob/master/Calendula/src/main/java/es/usc/citius/servando/calendula/persistence/Schedule.java#L276) This class has been deprecated in...
Don't know whether you've been aware of this. After API 11, tasks scheduled by AsyncTask.execute() will be executed on the same thread sequentially. Within method [setImageTitlezAuthor](https://github.com/imshyam/mintube/blob/f7b848cf695fae2db4154b6238f331e2cacd80ae/app/src/main/java/com/shapps/mintubeapp/PlayerService.java#L700), AsyncTask.execute is used to...
Hi! When using on amazon devices, the immersive full screen mode set by setSystemUIVisibility is not supported. On Amazon devices, any interaction with the app will bring back the nav...
Hi, I found that CookieSyncManager.getInstance is invoked in [DDGApplication](https://github.com/duckduckgo/android-search-and-stories/blob/391e7df703abf87f1431081f645a9abc1c237f36/src/com/duckduckgo/mobile/android/DDGApplication.java#L82). This class is deprecated since API 21. ([doc](https://developer.android.com/reference/android/webkit/CookieSyncManager.html)) I understand it is used to avoid crash bugs for CookieManager, but after...
Hi, When entering fullscreen mode, FaceSlim uses `setSystemUIVisibility`, hide nav bar, hide status bar and set to immersive mode. Immersive mode is not supported on amazon devices and any interactions...
Another thing, I noticed AsyncTask.execute() is used in CommentsListActivity. For your information, the [document](https://developer.android.com/reference/android/os/AsyncTask.html#execute(Params...)) specified that since honeycomb or API 11, the tasks will be executed on a single thread....
Hi, I noticed that CookieSyncManager is still in use to sync the cookies in BaseFacebookWebViewActivity.java. However, this class has been deprecated since API 21 and is not guaranteed to work...
Hi, I just noticed that class android.text.format.Time is used at many places. Eg, [line 345 in MonthView.java](https://github.com/spacecowboy/NotePad/blob/8b6d082adb164ec637fcc19cf1b021fa5f66d83c/external/datetimepicker/src/com/android/datetimepicker/date/MonthView.java#L345), [line 89 in MonthAdapter](url), etc. This class has been deprecated for multiple problems...