Guide created on 11/03/21 with VSCode version 1.53 (stable). Last tested with version 1.62.2.
I'm not a native English speaker, so please report inconsistencies to [/u/anonymous1184][00] (or send a .patch
of the [source][01]).
Guide created on 11/03/21 with VSCode version 1.53 (stable). Last tested with version 1.62.2.
I'm not a native English speaker, so please report inconsistencies to [/u/anonymous1184][00] (or send a .patch
of the [source][01]).
adb help // List all comands | |
== Adb Server | |
adb kill-server | |
adb start-server | |
== Adb Reboot | |
adb reboot | |
adb reboot recovery | |
adb reboot-bootloader |
package com.example.nileshdeokar.simplevibratedemo; | |
import android.os.Build; | |
import android.os.VibrationEffect; | |
import android.os.Vibrator; | |
import android.support.annotation.RequiresApi; | |
import android.support.v7.app.AppCompatActivity; | |
import android.os.Bundle; | |
import android.widget.Toast; | |
/* |
#!/bin/bash | |
# build systemui | |
. build/envsetup.sh | |
mmm frameworks/base/packages/SystemUI/ | |
adb start-server | |
adb root | |
adb remount |