powermanagers
1.0.0
Asus、Oppo、Sonyなどの一部のように、電話でインストールされたパワーマネージャーをチェックするAndroidライブラリ...
プロジェクトに以下を追加しますbuild.gradle:
allprojects {
repositories {
.. .
maven { url ' https://jitpack.io ' }
}
}app/build.gradle add:
android {
.. .
dependencies {
implementation ' com.github.marcandreappel:powermanagers:1.0.0 '
}
}任意の(しかし、できれば早い)アクティビティでは、 onCreateの下に追加されます。
// Check for the presence of a powermanager
val powermanagerIntent : Intent ? = Powermanagers .present( this )
// If there's one, then open it
if (powermanagerIntent != null ) {
startActivity(powermanagerIntent)
}