mirror of
https://github.com/FriendlyNeighborhoodShane/MinMicroG
synced 2024-11-05 00:00:46 +00:00
408a350175
The credited author for this commit wrote 34ad161546
but I didn't know how to amend commits at the time so I just squashed and they
lost their credit. This is an empty commit just to credit them for it.
78 lines
605 B
Plaintext
78 lines
605 B
Plaintext
# Config
|
|
|
|
variant="";
|
|
ver="";
|
|
verc="";
|
|
date="";
|
|
minsdk="";
|
|
|
|
modprop="id=$modname
|
|
name=
|
|
version=$ver
|
|
versionCode=$verc
|
|
author=
|
|
description=
|
|
support=
|
|
donate=
|
|
minMagisk=
|
|
";
|
|
|
|
stuff="
|
|
";
|
|
|
|
stuff_arch="
|
|
";
|
|
|
|
stuff_sdk="
|
|
";
|
|
|
|
stuff_arch_sdk="
|
|
";
|
|
|
|
stuff_util="
|
|
";
|
|
|
|
stuff_uninstall="$stuff $stuff_arch $stuff_sdk $stuff_arch_sdk";
|
|
|
|
stuff_debloat="
|
|
";
|
|
|
|
stuff_perm="
|
|
";
|
|
|
|
pre_build_actions() {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
post_build_actions() {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
pre_install_actions() {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
post_install_actions() {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
pre_uninstall_actions() {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
post_uninstall_actions() {
|
|
|
|
return 0;
|
|
|
|
}
|