-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
56 lines (44 loc) · 1.71 KB
/
Makefile
File metadata and controls
56 lines (44 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# makefile template
# ro.product.brand
DEVICE_BRAND := HTC
# ro.product.model
DEVICE_NAME := M8
# ro.build.display.id
SW_VERSION := cm_m8-userdebug 4.4.4 KTU84Q 29daeacbc3 test-keys
# packages need to be decompiled
DECOMPILE_PACKAGES := framework.jar services.jar android.policy.jar framework2.jar telephony-common.jar ext.jar
# custom resource package
CUSTOM_RESOURCE_PACKAGE := none
# extra packages need to be decompiled
#EXTRA_DECOMPILE_PACKAGES := TOS:qgallery.apk TARGET:Camera2.apk
# unpack boot.img tool
# support relative path & variables
# e.g. $(PORT_TOOLS)/unpackbootimg.sh
UNPACK_BOOTIMG_TOOL := default
# pack boot.img too
# support relative path & variables
# e.g. $(PORT_TOOLS)/mkbootimg.sh
PACK_BOOTIMG_TOOL := default
# device list that is suitable for. these devices will be added to the ota updater-script assertion statement
SUITABLE_DEVICES :=
# apktool/smali/baksmali selection
# support relative path & variables
# e.g. $(PORT_TOOLS)/apktool/apktool.jar
APKTOOL_JAR := default
SMALI_JAR := default
BAKSMALI_JAR := default
# aapt tool
# support relative path & variables
# e.g. $(PORT_TOOLS)/android/aapt
AAPT_PATH := default
##############################################################################
# The value is used to config the device's resolution.
# such as 720x1280, 1080x1920.
#-----------------------------------------------------------------------------
#RESOLUTION := 1080x1920
##############################################################################
# The value is used to config whether to append device assertions to update_script
# such as true, false.
#-----------------------------------------------------------------------------
RECOVERY_DEVICE_ASSERT=flash
include $(PORT_BUILD)/main.mk