diff options
author | Dan Pasanen <invisiblek@cyanogenmod.org> | 2016-11-30 18:56:46 -0600 |
---|---|---|
committer | Zhao Wei Liew <zhaoweiliew@gmail.com> | 2017-01-02 04:18:11 +0000 |
commit | 68718f97607eda3f2fd5e06aa9812ad739e6adce (patch) | |
tree | 8280ccbf5d6ba3ac392d682cb192f0485ea9ea7a /gello | |
parent | a4ae4813c25df4eee79638b752f44139c4bae4bd (diff) | |
download | vendor_replicant-68718f97607eda3f2fd5e06aa9812ad739e6adce.zip vendor_replicant-68718f97607eda3f2fd5e06aa9812ad739e6adce.tar.gz vendor_replicant-68718f97607eda3f2fd5e06aa9812ad739e6adce.tar.bz2 |
vendor: Add a task for getting prebuilts via http
* Gello being our first pawn
* Use curl instead of wget (more powerful)
* Ensure the intermediates directory exists prior to download
Change-Id: If19c18638a14a8b9ab55470ae6ee5a2deda2e3ec
Diffstat (limited to 'gello')
-rw-r--r-- | gello/Android.mk | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gello/Android.mk b/gello/Android.mk index 1cf0cd0..62e6aa6 100644 --- a/gello/Android.mk +++ b/gello/Android.mk @@ -1,5 +1,6 @@ # # Copyright (C) 2016 The CyanogenMod Project +# (C) 2017 The LineageOS Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -41,11 +42,9 @@ LOCAL_MODULE_TAGS := optional LOCAL_BUILT_MODULE_STEM := package.apk LOCAL_MODULE_SUFFIX := $(COMMON_ANDROID_PACKAGE_SUFFIX) -LOCAL_MAVEN_REPO := https://maven.cyanogenmod.org/artifactory/gello_prebuilds -LOCAL_MAVEN_GROUP := org.cyanogenmod -LOCAL_MAVEN_VERSION := 40 -LOCAL_MAVEN_ARTIFACT := gello -LOCAL_MAVEN_PACKAGING := apk +LOCAL_GELLO_VERSION := 40 +LOCAL_HTTP_PATH := https://github.com/LineageOS/android_packages_apps_Gello/releases/download/$(LOCAL_GELLO_VERSION)/gello.apk +LOCAL_HTTP_FILENAME := gello.apk -include $(BUILD_MAVEN_PREBUILT) +include $(BUILD_HTTP_PREBUILT) endif |