mirror of
https://github.com/budtmo/docker-android.git
synced 2026-07-31 04:07:25 +00:00
Merge branch 'master' into master
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
#!/bin/bash
|
||||
BOOT ()
|
||||
{
|
||||
A=$(adb wait-for-device shell getprop sys.boot_completed | tr -d '\r')
|
||||
while [[ $A != "1" ]]; do
|
||||
sleep 1;
|
||||
A=$(adb wait-for-device shell getprop sys.boot_completed | tr -d '\r')
|
||||
done;
|
||||
}
|
||||
|
||||
Get_Google_Play_Services ()
|
||||
{
|
||||
wget "https://www.apklinker.com/wp-content/uploads/uploaded_apk/5b51570a214a8/com.google.android.gms_12.8.74-040700-204998136_12874026_MinAPI23_(x86)(nodpi)_apklinker.com.apk"
|
||||
}
|
||||
|
||||
Update_Google_Play_Services ()
|
||||
{
|
||||
adb install -r "$PWD/com.google.android.gms_12.8.74-040700-204998136_12874026_MinAPI23_(x86)(nodpi)_apklinker.com.apk"
|
||||
}
|
||||
Disable_animations ()
|
||||
{
|
||||
# this is for demonstration what other amazing staff can be done here
|
||||
adb shell "settings put global window_animation_scale 0.0"
|
||||
adb shell "settings put global transition_animation_scale 0.0"
|
||||
adb shell "settings put global animator_duration_scale 0.0"
|
||||
}
|
||||
BOOT
|
||||
Get_Google_Play_Services
|
||||
Update_Google_Play_Services
|
||||
Disable_animations
|
||||
Reference in New Issue
Block a user