mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-12-22 16:07:39 +00:00
Fix build script
This commit is contained in:
parent
da36e5bcd5
commit
2285f5e888
1
app/.gitignore
vendored
1
app/.gitignore
vendored
@ -3,7 +3,6 @@
|
|||||||
/local.properties
|
/local.properties
|
||||||
.idea/
|
.idea/
|
||||||
/build
|
/build
|
||||||
app/release
|
|
||||||
*.hprof
|
*.hprof
|
||||||
.externalNativeBuild/
|
.externalNativeBuild/
|
||||||
*.apk
|
*.apk
|
||||||
|
5
build.py
5
build.py
@ -429,7 +429,7 @@ def build_app(args):
|
|||||||
# build process. Copy the stub APK into output directory.
|
# build process. Copy the stub APK into output directory.
|
||||||
build_type = 'release' if args.release else 'debug'
|
build_type = 'release' if args.release else 'debug'
|
||||||
apk = f'stub-{build_type}.apk'
|
apk = f'stub-{build_type}.apk'
|
||||||
source = op.join('app', 'src', 'main', 'assets', 'stub.apk')
|
source = op.join('app', 'src', build_type, 'assets', 'stub.apk')
|
||||||
target = op.join(config['outdir'], apk)
|
target = op.join(config['outdir'], apk)
|
||||||
cp(source, target)
|
cp(source, target)
|
||||||
|
|
||||||
@ -457,7 +457,8 @@ def cleanup(args):
|
|||||||
if 'java' in args.target:
|
if 'java' in args.target:
|
||||||
header('* Cleaning java')
|
header('* Cleaning java')
|
||||||
execv([gradlew, 'app:clean', 'app:shared:clean', 'stub:clean'])
|
execv([gradlew, 'app:clean', 'app:shared:clean', 'stub:clean'])
|
||||||
rm_rf(op.join('app', 'src', 'main', 'assets'))
|
rm_rf(op.join('app', 'src', 'debug'))
|
||||||
|
rm_rf(op.join('app', 'src', 'release'))
|
||||||
|
|
||||||
|
|
||||||
def setup_ndk(args):
|
def setup_ndk(args):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user