Miscellaneous Improve the android service process priority Apr 02, 2018 1 min read android-keeplive Improve the android service process priority Gradle compile 'com.carmelo:keeplive:1.0.0' Groovy usage public class DemoService extends KeepliveService{ @Override public int onStartCommand(Intent intent, int flags, int startId) { int i = super.onStartCommand(intent, flags, startId); //do something return i; } } Java 在manifest.xml注册service并且指定进程为 :live <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.carmelo.androidkeeplive"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme"> <service android:name=".DemoService" android:process=":live"/> </application> </manifest> Java GitHub Miscellaneous
Miscellaneous Android Library to handle multiple Uri's(paths) received through Intents Android library written in Kotlin, but can be used in Java too. Built to handle a single or multiple Uri (paths) received through Intents. 05 August 2020
Miscellaneous Clean Rx Kotlin Architecture sample on GitHub Api It's time to make a technical assessment now that I've been in Android development since 2011 including 5 years in mobile agency. 13 June 2020
Miscellaneous A polite and easy way to ask for Android Permissions ExcuseMe is an Android library that provides an one-line implementation for android permissions made with Kotlin. 25 May 2020