Skip to content

Commit

Permalink
03-Service: Android build system integration
Browse files Browse the repository at this point in the history
Signed-off-by: Vladimir Svistelnikov <[email protected]>
  • Loading branch information
svistelnikoff committed Jul 7, 2019
1 parent 8665380 commit 1ad9fbe
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 0 deletions.
23 changes: 23 additions & 0 deletions 03-Service/GetSetService/Android.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_USE_AAPT2 := true

LOCAL_MODULE_TAGS := optional

LOCAL_SRC_FILES := $(call all-java-files-under, app/src/main/java)
LOCAL_SRC_FILES := $(call all-java-files-under, app/src/main/aidl)

LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/app/src/main/res

LOCAL_MANIFEST_FILE := app/src/main/AndroidManifest.xml

LOCAL_STATIC_ANDROID_LIBRARIES := \
androidx.appcompat_appcompat

LOCAL_PACKAGE_NAME := GetSetService

LOCAL_SDK_VERSION := 28

include $(BUILD_PACKAGE)
24 changes: 24 additions & 0 deletions 03-Service/GetterApp/Android.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_USE_AAPT2 := true

LOCAL_MODULE_TAGS := optional

LOCAL_SRC_FILES := $(call all-java-files-under, app/src/main/java)
LOCAL_SRC_FILES := $(call all-java-files-under, app/src/main/aidl)

LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/app/src/main/res

LOCAL_MANIFEST_FILE := app/src/main/AndroidManifest.xml

LOCAL_STATIC_ANDROID_LIBRARIES := \
androidx.appcompat_appcompat \
androidx-constraintlayout_constraintlayout

LOCAL_PACKAGE_NAME := GetterApp

LOCAL_SDK_VERSION := 28

include $(BUILD_PACKAGE)
24 changes: 24 additions & 0 deletions 03-Service/SetterApp/Android.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_USE_AAPT2 := true

LOCAL_MODULE_TAGS := optional

LOCAL_SRC_FILES := $(call all-java-files-under, app/src/main/java)
LOCAL_SRC_FILES := $(call all-java-files-under, app/src/main/aidl)

LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/app/src/main/res

LOCAL_MANIFEST_FILE := app/src/main/AndroidManifest.xml

LOCAL_STATIC_ANDROID_LIBRARIES := \
androidx.appcompat_appcompat \
androidx-constraintlayout_constraintlayout

LOCAL_PACKAGE_NAME := SetterApp

LOCAL_SDK_VERSION := 28

include $(BUILD_PACKAGE)

0 comments on commit 1ad9fbe

Please sign in to comment.