Initial push
This commit is contained in:
parent
1effac6bf8
commit
a01d3e7cc2
1993 changed files with 106354 additions and 0 deletions
21
Apps/Android.mk
Normal file
21
Apps/Android.mk
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#
|
||||
# Copyright 2019-Present A-Team Digital Solutions
|
||||
#
|
||||
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
|
||||
# Only include this module if TARGET_IS_GSI is NOT set
|
||||
ifneq ($(TARGET_IS_GSI), true)
|
||||
include $(CLEAR_VARS)
|
||||
LOCAL_MODULE := TimeWeather
|
||||
LOCAL_MODULE_CLASS := APPS
|
||||
LOCAL_MODULE_TAGS := optional
|
||||
LOCAL_CERTIFICATE := PRESIGNED
|
||||
LOCAL_SRC_FILES := TimeWeather.apk
|
||||
LOCAL_PRODUCT_MODULE := true
|
||||
LOCAL_MODULE_PATH := $(TARGET_OUT_PRODUCT)/app
|
||||
include $(BUILD_PREBUILT)
|
||||
endif
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in a new issue