LP Devs Blog

Android

  • March 17, 2017

    Create desktop entry for an application in Ubuntu

    I just installed Android Studio 2.3 in my Ubuntu computer. Everything is fine. But there is a little problem that there is no an icon for it.So today, I want to share with you how I create an desktop entry for an application, such as: Android Stud...

  • February 25, 2017

    Request permissions by java in Android version 23+

    In android with version >= 23, you need to request some permissionsin java code. To register some permissions, follow these steps: Step 1: Declare variables private List<String> permissions;private static final int REQUEST_PERMISSION_...