mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
43 lines
1.1 KiB
Diff
43 lines
1.1 KiB
Diff
From 5178642bc1092a259d1dd366859083ebe740bb6e Mon Sep 17 00:00:00 2001
|
|
From: Tad <tad@spotco.us>
|
|
Date: Sun, 29 Jan 2017 12:50:51 -0500
|
|
Subject: [PATCH] Build fixes
|
|
|
|
Change-Id: I5843e1df6191d76641893b452eb5e6e0b4334418
|
|
---
|
|
Android.mk | 2 +-
|
|
build.gradle | 4 ++--
|
|
2 files changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/Android.mk b/Android.mk
|
|
index 1da0fbb..74fff61 100644
|
|
--- a/Android.mk
|
|
+++ b/Android.mk
|
|
@@ -7,7 +7,7 @@ LOCAL_MODULE_TAGS := optional
|
|
LOCAL_PACKAGE_NAME := IchnaeaNlpBackend
|
|
|
|
ichnaea_root := $(LOCAL_PATH)
|
|
-ichnaea_out := $(OUT_DIR)/target/common/obj/APPS/$(LOCAL_MODULE)_intermediates
|
|
+ichnaea_out := $(PWD)/$(OUT_DIR)/target/common/obj/APPS/$(LOCAL_MODULE)_intermediates
|
|
ichnaea_build := $(ichnaea_root)/build
|
|
ichnaea_apk := build/outputs/apk/IchnaeaNlpBackend-release-unsigned.apk
|
|
|
|
diff --git a/build.gradle b/build.gradle
|
|
index abfde7c..f80763c 100644
|
|
--- a/build.gradle
|
|
+++ b/build.gradle
|
|
@@ -58,8 +58,8 @@ dependencies {
|
|
}
|
|
|
|
android {
|
|
- compileSdkVersion 23
|
|
- buildToolsVersion "23.0.2"
|
|
+ compileSdkVersion 24
|
|
+ buildToolsVersion "25.0.1"
|
|
|
|
defaultConfig {
|
|
versionName getMyVersionName()
|
|
--
|
|
2.9.3
|
|
|